postcss.config.js 596 B

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