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.

12 lines
272 B
JavaScript

8 months ago
/* 需要依赖lib-flexible、postcss-pxtorem */
module.exports = {
plugins: {
// autoprefixer: {},
"postcss-pxtorem": {
rootValue: 192, // 75表示750设计稿37.5表示375设计稿
propList: ["*"],
},
},
};