移动端
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.
 
 

26 line
346 B

  1. module.exports = ({ file }) => {
  2. let remUnit;
  3. if (file && file.dirname && file.dirname.indexOf("vant") > -1) {
  4. remUnit = 37.5;
  5. } else {
  6. remUnit = 75;
  7. }
  8. return {
  9. plugins: {
  10. autoprefixer: {},
  11. "postcss-px2rem-exclude": {
  12. "remUnit": remUnit,
  13. "exclude": /vue-search-tree/i
  14. }
  15. }
  16. }
  17. }