webpack css 报错 Cannot read prope
2018-01-15 本文已影响0人
古_道_西_风_瘦_马
解决方案如下 ,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
})