9 lines
322 B
JavaScript
9 lines
322 B
JavaScript
|
module.exports = {
|
|||
|
plugins: {
|
|||
|
autoprefixer: {}, // 可以添加autoprefixer等其他postcss插件
|
|||
|
'postcss-pxtorem': {
|
|||
|
rootValue: 37.5, // 设计稿尺寸基准16px,通常设为设计稿尺寸的一半或者1/10
|
|||
|
propList: ['*'] // 需要转换的属性,这里选择转换所有属性
|
|||
|
}
|
|||
|
}
|
|||
|
};
|