有以下装载程序:
{
test: /\.sass$/,
//loaders: ['style', 'css', 'sass']
loader: ExtractTextPlugin.extract('style', 'css?-minimize!sass?sourceMap&indentedSyntax')
}
正如您所看到的,我想使用css-loader,但最小化禁用。它不起作用,即我有风格:
.some-style
-webkit-tap-highlight-color: rgba(0,0,0,0)
结果:
.some-style {
-webkit-tap-highlight-color: transparent; }
正如你所看到的,我已经'透明'而不是'rgba(0,0,0,0)'。我该如何禁用它?提前谢谢!