邃芒官网、邃芒慧影、口播(H5) https://m.metavatar.cc
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.
 
 
 
 

15 lines
357 B

  1. const path = require('path')
  2. module.exports = ({ file }) => {
  3. const designWidth = file.dirname.includes(path.join('node_modules', 'vant')) ? 37.5 : 72.0
  4. return {
  5. plugins: {
  6. autoprefixer: {},
  7. 'postcss-pxtorem': {
  8. rootValue: designWidth,
  9. propList: ['*']
  10. }
  11. }
  12. }
  13. }