what is the intention of extract all css in a single file
问题 First, I don't understand what is the meaning for extract all css in a single file, and What's the profit of doing that? Moreover, I try use splitChunks of webpack4 to extract css but it is produced a js files. I think, it is not supposed to be produces a css files? this is my code. splitChunks: { cacheGroups:{ vendors: { test: /\.js$/g, chunks: 'all', name: 'vendors', minChunks: 1, minSize: 1 }, styles: { test: /\.less$/g, chunks: 'all', name: 'styles', minChunks: 1, minSize: 1, enforce: