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
77
88## [ Unreleased]
99
10- - Nothing yet!
10+ ### Fixed
11+
12+ - Temporarily disable optimize univeral defaults ([ #6461 ] ( https://github.com/tailwindlabs/tailwindcss/pull/6461 ) )
1113
1214## [ 3.0.1] - 2021-12-10
1315
Original file line number Diff line number Diff line change @@ -2,7 +2,11 @@ import chalk from 'chalk'
22import log from './util/log'
33
44let 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
610}
711
812let featureFlags = {
You can’t perform that action at this time.
0 commit comments