| 1234567891011121314 |
- module.exports = {
- plugins: {
- "postcss-pxtorem": {
- // 关键点:因为你的设计稿是 375px
- // 这里的数值必须是 37.5 (即 1rem = 37.5px)
- // 如果你这里写的是 75,页面元素会缩小一半;如果写的是 16,页面会变得巨大。
- rootValue: 37.5,
- propList: ["*"], // 所有属性都转 rem
- selectorBlackList: [".norem"], // 过滤掉 .norem- 开头的 class,不进行 rem 转换
- exclude: /node_modules/i, // 可选:忽略 node_modules 里的库(如果你发现组件库变小了就加上这行)
- },
- },
- };
|