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.
|
|
|
|
/* 需要依赖:lib-flexible、postcss-pxtorem */
|
|
|
|
|
module.exports = {
|
|
|
|
|
plugins: {
|
|
|
|
|
// autoprefixer: {},
|
|
|
|
|
"postcss-pxtorem": {
|
|
|
|
|
rootValue: 192, // 75表示750设计稿,37.5表示375设计稿
|
|
|
|
|
propList: ["*"],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|