.postcssrc.js 330 B

12345678910111213
  1. // https://github.com/michael-ciniawsky/postcss-load-config
  2. module.exports = {
  3. plugins: {
  4. autoprefixer: {
  5. overrideBrowserslist: ['Android 4.1', 'iOS 7.1', 'Chrome > 31', 'ff > 31', 'ie >= 8']
  6. },
  7. 'postcss-pxtorem': {
  8. rootValue: 37.5,
  9. propList: ['*'],
  10. //selectorBlackList: ['van-']
  11. }
  12. }
  13. }