您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

2 年前
12345678910111213
  1. // https://github.com/michael-ciniawsky/postcss-load-config
  2. module.exports = {
  3. plugins: {
  4. 'autoprefixer': {
  5. browsers: ['Android >= 4.0', 'iOS >= 7']
  6. },
  7. 'postcss-pxtorem': {
  8. rootValue: 50,
  9. propList: ['*']
  10. }
  11. }
  12. }