File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
- - Nothing yet!
10
+ ### Fixed
11
+
12
+ - Temporarily disable optimize univeral defaults ([ #6461 ] ( https://github.com/tailwindlabs/tailwindcss/pull/6461 ) )
11
13
12
14
## [ 3.0.1] - 2021-12-10
13
15
Original file line number Diff line number Diff line change @@ -2,7 +2,11 @@ import chalk from 'chalk'
2
2
import log from './util/log'
3
3
4
4
let defaults = {
5
- optimizeUniversalDefaults : true ,
5
+ // TODO: Drop this once we can safely rely on optimizeUniversalDefaults being
6
+ // the default.
7
+ optimizeUniversalDefaults : process . env . NODE_ENV === 'test' ? true : false ,
8
+
9
+ // optimizeUniversalDefaults: true
6
10
}
7
11
8
12
let featureFlags = {
You can’t perform that action at this time.
0 commit comments