解决方案如下 ,https://doc.webpack-china.org/plugins/extract-text-webpack-plugin/
new ExtractTextPlugin({
filename: (getPath) => {
return getPath('css/[name].css').replace('css/js', 'css');
},
allChunks: true
})
解决方案如下 ,https://doc.webpack-china.org/plugins/extract-text-webpack-plugin/
new ExtractTextPlugin({
filename: (getPath) => {
return getPath('css/[name].css').replace('css/js', 'css');
},
allChunks: true
})