Skip to content

Commit 860c61c

Browse files
authored
temporarily disable optimize universal defaults (#6461)
* temporarily disable optimize universal defaults * update changelog
1 parent 42683df commit 860c61c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff 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

src/featureFlags.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ import chalk from 'chalk'
22
import log from './util/log'
33

44
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
610
}
711

812
let featureFlags = {

0 commit comments

Comments
 (0)