gx
queenwuli
2022-04-06 6a00e076e538772cfc448731d0349895f4b5422e
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: ['*']
        }
    }
}