File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010### Fixed
1111
1212- Fix support for container query utilities with arbitrary values ([ #12534 ] ( https://github.com/tailwindlabs/tailwindcss/pull/12534 ) )
13+ - Fix custom config loading in Standalone CLI ([ #12616 ] ( https://github.com/tailwindlabs/tailwindcss/pull/12616 ) )
1314
1415### Added
1516
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ let jiti: ReturnType<typeof jitiFactory> | null = null
88// @internal
99// This WILL be removed in some future release
1010// If you rely on this your stuff WILL break
11- export function useCustomJiti ( _jiti : ReturnType < typeof jitiFactory > ) {
12- jiti = _jiti
11+ export function useCustomJiti ( _jiti : ( ) => ReturnType < typeof jitiFactory > ) {
12+ jiti = _jiti ( )
1313}
1414
1515function lazyJiti ( ) {
You can’t perform that action at this time.
0 commit comments