Skip to content

Commit 337fb58

Browse files
authored
Allow stage 3 css transforms (facebook#5091)
* Switch to stage 3 css * Tweak default browsers, too
1 parent 4ae5dda commit 337fb58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/webpack.config.dev.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const getStyleLoaders = (cssOptions, preProcessor) => {
6060
autoprefixer: {
6161
flexbox: 'no-2009',
6262
},
63-
stage: 4,
63+
stage: 3,
6464
}),
6565
],
6666
},

config/webpack.config.prod.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const getStyleLoaders = (cssOptions, preProcessor) => {
7272
autoprefixer: {
7373
flexbox: 'no-2009',
7474
},
75-
stage: 4,
75+
stage: 3,
7676
}),
7777
],
7878
sourceMap: shouldUseSourceMap,

0 commit comments

Comments
 (0)