.postcssrc.js 279 B

12345678910111213141516
  1. /**
  2. * PostCSS 配置文件
  3. */
  4. module.exports = {
  5. // 配置要使用的 PostCSS 插件
  6. plugins: {
  7. 'postcss-pxtorem': {
  8. rootValue ({ file }) {
  9. return file.indexOf('vant') !== -1 ? 37.5 : 75
  10. },
  11. propList: ['*']
  12. }
  13. }
  14. }