I am working in Laravel with Vue.js and in my webpack.config.js
file I am extracting the js chunks file like this:
mix.webpackConfig({
resolve: {
alias: {...
'Helpers': path.resolve(__dirname, 'resources/js/helpers/'),
'Themes': path.resolve(__dirname, 'resources/js/themes/')
...}
},
output: {
chunkFilename: 'js/chunks/[name].js',
},
});
This extract the js chunks file like 0.js , 1.js ,2.js etc. I want to extract the CSS chunks in same way.
See Question&Answers more detail:os