Browse Source

fix: add autoprefixer config

richard1015 5 years ago
parent
commit
bb5caad36a
1 changed files with 3 additions and 1 deletions
  1. 3 1
      .postcssrc.js

+ 3 - 1
.postcssrc.js

@@ -2,6 +2,8 @@ module.exports = {
   plugins: {
     'postcss-import': {},
     'postcss-url': {},
-    autoprefixer: {}
+    autoprefixer: {
+      overrideBrowserslist: ['last 20 versions'] 
+    }
   }
 };