postcss.config.js 262 B

1234567891011
  1. module.exports = {
  2. plugins: {
  3. 'postcss-pxtorem': {
  4. rootValue(input) {
  5. return /[\\/]node_modules[\\/]vant/.test(input.file) ? 37.5 : 75
  6. },
  7. propList: ['*', '!filter'],
  8. minPixelValue: 2, // 不对1像素做转换
  9. },
  10. },
  11. }