对应到webpack4.2.0配置需要调整更新,否则无法编译
luuck opened this issue · 2 comments
luuck commented
module: {
rules: [ {
test: /\.css$/,
// 当下的配置会导致webpack4.2.0无法编译
// loader: 'style-loader!css-loader!px2rem?remUnit=75&remPrecision=8'
// 需更新为如下配置
use: [{
loader: "style-loader"
},{
loader: "css-loader"
},{
loader: "px2rem-loader",
options: {
remUni:75,
remPrecision:8
}
}]
}]
}
Jinjiang commented
Sorry,我这周细看一下,回复略晚抱歉
Jinjiang commented
我查了一下,webpack 新版已经不支持你注释中的写法了。参考文档:https://webpack.js.org/configuration/module/#rule-loader 所以只有注释之后的写法是正确的。
谢谢