gx
queenwuli
2022-03-17 b702a5141e4bb77369c7c6b0d740aaf4a7713f6d
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: ['*']
        }
    }
}