vue-cli3.0中使用 postcss-pxtorem

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