18 lines
703 B
JavaScript
18 lines
703 B
JavaScript
// https://github.com/michael-ciniawsky/postcss-load-config
|
|
|
|
module.exports = {
|
|
"plugins": {
|
|
"postcss-import": {},
|
|
"postcss-url": {},
|
|
// to edit target browsers: use "browserslist" field in package.json
|
|
"autoprefixer": {},
|
|
'postcss-pxtorem': {
|
|
rootValue({ file }) { // 判断是否是vant的文件 如果是就使用 37.5为根节点字体大小
|
|
// 否则使用75 因为vant使用的设计标准为375 但是市场现在的主流设置尺寸是750
|
|
return 192;
|
|
},
|
|
// 配置哪些文件中的尺寸需要转化为rem *表示所有的都要转化
|
|
propList: ['*'],
|
|
},
|
|
}
|
|
} |