Skip to content

Instantly share code, notes, and snippets.

View autorunman22's full-sized avatar
🤒
Out sick

autorunman22

🤒
Out sick
View GitHub Profile
@autorunman22
autorunman22 / webpack.mix.js
Last active March 25, 2022 02:49
Laravel common mix setup for vue.js + pug.js
const mix = require('laravel-mix');
mix.webpackConfig({
module: {
rules: [
{
test: /\.pug$/,
loader: 'pug-plain-loader'
}
]