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