You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
290 B
JavaScript
10 lines
290 B
JavaScript
2 years ago
|
module.exports = {
|
||
|
plugins: {
|
||
|
autoprefixer: {},
|
||
|
// flexible配置
|
||
|
"postcss-pxtorem": {
|
||
|
"rootValue": 75, // 设计稿宽度的1/10
|
||
|
"propList": ["*"] // 需要做转化处理的属性,如`hight`、`width`、`margin`等,`*`表示全部
|
||
|
}
|
||
|
}
|
||
|
}
|