postcss.config.js 138 B

12345678910
  1. // postcss.config.js
  2. module.exports = {
  3. plugins: {
  4. 'postcss-pxtorem': {
  5. rootValue: 37.5,
  6. propList: ['*'],
  7. },
  8. },
  9. }