.postcssrc.js 344 B

12345678910
  1. module.exports = {
  2. "plugins": {
  3. "postcss-pxtorem": {
  4. rootValue: 37.5, // Vant 官方根字体大小是 37.5, 表示375设计稿
  5. propList: ['*'],
  6. selectorBlackList: ['.norem','van'], // 过滤掉.norem-开头的class,不进行rem转换
  7. exclude: /web/i //忽略 web下所有文件
  8. }
  9. }
  10. }