gx
queenwuli
2022-04-18 76e8723b89e4349909293e7f526422c4e86bc4fe
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: ['*']
        }
    }
}