gx
queenwuli
2022-03-31 4bbe241ca5533f6dff000ec6fb8bc73a014cd16d
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: ['*']
        }
    }
}