vue.config.js
module.exports = {
lintOnSave: true,
css: {
loaderOptions: {
postcss: {
plugins: [
require('postcss-pxtorem')({
rootValue : 1, // 換算的基數
selectorBlackList : ['weui','mu'], // 忽略轉換正則匹配項
propList : ['*'],
}),
]
}
}
},
}