選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
245B

  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. };