Is it possible to generate separate CSS file for each chunk?
new ExtractTextPlugin('[name].css') can only generate CSS file for entry chunks(initial chunks), if I add parameter {allChunks: true}, it will output CSS in other chunks in the initial chunks also. Is there a way to exclude CSS in non-initial chunks and output them in separate file?
Is it possible to generate separate CSS file for each chunk?
new ExtractTextPlugin('[name].css')can only generate CSS file for entry chunks(initial chunks), if I add parameter{allChunks: true}, it will output CSS in other chunks in the initial chunks also. Is there a way to exclude CSS in non-initial chunks and output them in separate file?