postcss.config.js 367 B

1234567891011
  1. // postcss.config.js
  2. module.exports = {
  3. plugins: {
  4. 'postcss-pxtorem': {
  5. rootValue({ file }) {
  6. return file.indexOf('vant') !== -1 ? 37.5 : 75; // 因为vant框架是以375px的稿子为基础的,所以需要适配一下
  7. },
  8. propList: ['*'], // 需要转换的css属性,默认*全部
  9. }
  10. }
  11. }