You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

postcss.config.cjs 245B

1 month ago
1234567891011
  1. module.exports = {
  2. plugins: {
  3. // postcss-pxtorem 插件的版本需要 >= 5.0.0
  4. 'postcss-pxtorem': {
  5. rootValue({ file }) {
  6. return file.indexOf('vant') !== -1 ? 37.5 : 112.5;
  7. },
  8. propList: ['*'],
  9. },
  10. },
  11. };