Skip to content

Commit

Permalink
temporarily disable optimize universal defaults (#6461)
Browse files Browse the repository at this point in the history
* temporarily disable optimize universal defaults

* update changelog
  • Loading branch information
RobinMalfait committed Dec 13, 2021
1 parent 42683df commit 860c61c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Nothing yet!
### Fixed

- Temporarily disable optimize univeral defaults ([#6461](https://github.com/tailwindlabs/tailwindcss/pull/6461))

## [3.0.1] - 2021-12-10

Expand Down
6 changes: 5 additions & 1 deletion src/featureFlags.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ import chalk from 'chalk'
import log from './util/log'

let defaults = {
optimizeUniversalDefaults: true,
// TODO: Drop this once we can safely rely on optimizeUniversalDefaults being
// the default.
optimizeUniversalDefaults: process.env.NODE_ENV === 'test' ? true : false,

// optimizeUniversalDefaults: true
}

let featureFlags = {
Expand Down

0 comments on commit 860c61c

Please sign in to comment.