web
昨天 2c1dadab445eadb661c08738fc471789d4a4d2af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const config = {
    plugins: {
        'postcss-pxtorem': {
            rootValue: 16, // 根元素字体大小,默认为16px
            unitPrecision: 2, //精度
            propList: ['*'], // 需要转换的属性,'*'表示全部属性,也可以指定['font-size', 'margin*']等
            selectorBlackList: [], // 忽略转换的选择器,比如['body', 'html']
            replace: true, // 是否直接替换而不是添加回退
            mediaQuery: false, // 是否允许在媒体查询中转换px
            minPixelValue: 0, // 最小转换数值,小于这个值的px单位将不被转换
        },
    },
};
 
module.exports = config;