postcss.config.js 241 Bytes
/**
 * 配置css单位转换
 * 无法修改内联样式 如果开启该功能书写时需要注意
 */
module.exports = {
    plugins: {
        'postcss-pxtorem': {
            rootValue: 100,
            propList: ['*'],
        }
    }
}