postcss.config.js 231 B

1234567891011
  1. module.exports = {
  2. plugins: {
  3. 'postcss-pxtorem': {
  4. rootValue(input) {
  5. return /[\\/]node_modules[\\/]/.test(input.file) ? 50 : 100
  6. },
  7. propList: ['*', '!filter'],
  8. minPixelValue: 2,
  9. },
  10. },
  11. }