我正在尝试添加 cssnano 优化规则,但使用 vue-cli,它似乎不起作用。我在中添加了以下脚本vue.config.js
:
module.exports = {
css: {
loaderOptions: {
postcss: {
plugins: [
require("cssnano")({
preset: [
"default",
{
discardComments: {
removeAll: true
},
mergeRules: true
}
]
})
]
}
}
}
};
但它不起作用(见下面的截图)
屏幕截图 - cssnanomergeRules
不适用:
我错过了什么?