gx
queenwuli
2022-04-15 c110a60ee4a75060dfd47d32150e99232c11f9e1
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
    "plugins": {
        "autoprefixer": {},
        'postcss-pxtorem': {
            rootValue({ file }) {
                return file.indexOf('vant') !== -1 ? 37.5 : 75;
            },
            propList: ['*']
        }
    }
}