我用這個配置對於我的WebPack 2如何在CSS模式下使用webpack 2刪除CSS Loader的所有註釋?
{
test: /\.css$/i,
use: ExtractTextPlugin.extract({
use: 'css-loader?minimize'
})
}
如何刪除基於字符串模式的所有評論? 我用這個,但不起作用
'css-loader?minimize&{discardComments:{removeAll:true}}'
誰能幫助我?