邃芒官网、邃芒慧影、口播(H5) https://m.metavatar.cc
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

14 wiersze
361 B

  1. module.exports = ({ file }) => {
  2. let isVant = file && file.dirname && file.dirname.indexOf('vant') > -1
  3. let rootValue = 37.5// 判断条件 请自行调整
  4. return {
  5. plugins: {
  6. autoprefixer: {},
  7. 'postcss-pxtorem': {
  8. rootValue: rootValue,
  9. propList: ['*']
  10. }
  11. }
  12. }
  13. }