Skip to content

Commit 973d53d

Browse files
authored
fix: do not return the userConfigPath if its null (#4773)
1 parent aefd5f7 commit 973d53d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jit/lib/setupWatchingContext.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ function getTailwindConfig(configOrPath) {
185185
configOrPath.config === undefined ? configOrPath : configOrPath.config
186186
)
187187

188-
return [newConfig, null, hash(newConfig), [userConfigPath]]
188+
return [newConfig, null, hash(newConfig), []]
189189
}
190190

191191
function resolvedChangedContent(context, candidateFiles) {

0 commit comments

Comments
 (0)