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

54
webpack.mix.js vendored
View File

@ -1,8 +1,10 @@
let mix = require('laravel-mix'); let mix = require('laravel-mix');
const fs = require("fs"); const fs = require("fs");
const path = require("path");
mix.before(() => { mix.before(() => {
fs.rmSync('public/js', { recursive: true, force: true }); fs.rmSync('public/css', { recursive: true, force: true });
fs.rmSync('public/js', { recursive: true, force: true });
}); });
@ -46,31 +48,35 @@ mix.version();
const TerserPlugin = require('terser-webpack-plugin'); const TerserPlugin = require('terser-webpack-plugin');
mix.options({ mix.options({
processCssUrls: false, processCssUrls: false,
terser: { terser: {
parallel: true, parallel: true,
terserOptions: { terserOptions: {
compress: true, compress: true,
output: { output: {
comments: false comments: false
} }
} }
} }
}) })
mix.alias({
'@': path.join(__dirname, 'resources/assets/components'),
'~': path.join(__dirname, 'resources/assets/js/components'),
});
mix.webpackConfig({ mix.webpackConfig({
optimization: { optimization: {
providedExports: false, providedExports: false,
sideEffects: false, sideEffects: false,
usedExports: false, usedExports: false,
minimize: true, minimize: true,
minimizer: [ new TerserPlugin({ minimizer: [ new TerserPlugin({
extractComments: false, extractComments: false,
})] })]
}, },
output: { output: {
chunkFilename: 'js/[name].[chunkhash].js', chunkFilename: 'js/[name].[chunkhash].js',
} }
}); });
mix.autoload({ mix.autoload({
jquery: ['$', 'jQuery', 'window.jQuery'] jquery: ['$', 'jQuery', 'window.jQuery']
}); });