.postcssrc.js 342 B

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