.postcssrc.js 179 B

12345678
  1. module.exports = {
  2. plugins: {
  3. 'postcss-pxtorem': {
  4. rootValue: 37.5, // Vant 官方设计稿标准 (375px)
  5. propList: ['*'],
  6. },
  7. },
  8. };