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.
 
 
 
 

14 lines
249 B

  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. }