We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8659e55 commit e9f1e67Copy full SHA for e9f1e67
config/webpack.config.dev.js
@@ -97,7 +97,16 @@ module.exports = {
97
useEslintrc: false
98
},
99
postcss: function() {
100
- return [autoprefixer];
+ return [
101
+ autoprefixer({
102
+ browsers: [
103
+ '>1%',
104
+ 'last 4 versions',
105
+ 'Firefox ESR',
106
+ 'not ie < 9',
107
+ ]
108
+ }),
109
+ ];
110
111
plugins: [
112
new HtmlWebpackPlugin({
config/webpack.config.prod.js
@@ -107,7 +107,16 @@ module.exports = {
113
114
115
116
117
118
119
120
121
122
0 commit comments