postcss.config.js 184 B

12345678910
  1. module.exports = {
  2. plugins: {
  3. 'postcss-pxtorem': {
  4. rootValue({ file }) {
  5. return file.indexOf('vant/') !== -1 ? 37.5 : 75
  6. },
  7. propList: ['*']
  8. }
  9. }
  10. }