1
0
Fork 0

Update webpack config

This commit is contained in:
Daniel Supernault 2024-04-20 00:55:21 -06:00
parent 26f92c93ce
commit ded660b2c4
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1
1 changed files with 30 additions and 24 deletions

6
webpack.mix.js vendored
View File

@ -1,7 +1,9 @@
let mix = require('laravel-mix');
const fs = require("fs");
const path = require("path");
mix.before(() => {
fs.rmSync('public/css', { recursive: true, force: true });
fs.rmSync('public/js', { recursive: true, force: true });
});
@ -57,6 +59,10 @@ mix.options({
}
}
})
mix.alias({
'@': path.join(__dirname, 'resources/assets/components'),
'~': path.join(__dirname, 'resources/assets/js/components'),
});
mix.webpackConfig({
optimization: {
providedExports: false,