postcss.config.cjs 173 B

12345678910
  1. module.exports = {
  2. plugins: {
  3. 'postcss-pxtorem': {
  4. rootValue: 192,
  5. propList: ['*'],
  6. selectorBlackList: ['height'],
  7. minPixelValue: 2
  8. }
  9. }
  10. }