const autoprefixer = require('autoprefixer'); const px2rem = require('postcss-pxtorem'); module.exports = { plugins: [ autoprefixer(), px2rem({ rootValue(res) { return res.file.indexOf('vant') !== -1 ? 37.5 : 75 //换算基数,1rem相当于75px }, unitPrecision: 5, //保留rem小数点多少位 propList: ['*'], minPixelValue: 12 //px小于12的不会被转换 }) ] }