18 lines
457 B
JavaScript
18 lines
457 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": 37.5,// 设计稿宽度的1/10
|
|
"propList": [
|
|
"*"
|
|
]// 需要做转化处理的属性,如`hight`、`width`、`margin`等,`*`表示全部
|
|
}
|
|
|
|
}
|
|
}
|