盐都地图
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
409 B

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的不会被转换
})
]
}