How do we extract CSS chunks file in Laravel with Vue?
问题 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. 回答1: I was having the same problem with vuely xd.