webpack
css-module https://zhuanlan.zhihu.com/p/20495964
使用css-loader,需要在plugins添加
new ExtractTextPluginStyle('style.css', { allChunks: true }),
在loaders里面添加
{
test: /\.css$/,
loader: ExtractTextPlugin.extract('style-loader', 'css?modules&localIdentName=[name]__[local]-[hash:base64:5]')
}
浙公网安备 33010602011771号