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.
17 lines
409 B
17 lines
409 B
1 year ago
|
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的不会被转换
|
||
|
})
|
||
|
]
|
||
|
}
|