25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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