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
10
10
### Fixed
11
11
12
12
- 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 ) )
13
14
14
15
## [ 3.3.6] - 2023-12-04
15
16
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ let jiti: ReturnType<typeof jitiFactory> | null = null
8
8
// @internal
9
9
// This WILL be removed in some future release
10
10
// 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 ( )
13
13
}
14
14
15
15
function lazyJiti ( ) {
You can’t perform that action at this time.
0 commit comments