Skip to content

Commit

Permalink
fix: do not return the userConfigPath if its null (#4773)
Browse files Browse the repository at this point in the history
  • Loading branch information
schelmo committed Jun 23, 2021
1 parent aefd5f7 commit 973d53d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jit/lib/setupWatchingContext.js
Expand Up @@ -185,7 +185,7 @@ function getTailwindConfig(configOrPath) {
configOrPath.config === undefined ? configOrPath : configOrPath.config
)

return [newConfig, null, hash(newConfig), [userConfigPath]]
return [newConfig, null, hash(newConfig), []]
}

function resolvedChangedContent(context, candidateFiles) {
Expand Down

0 comments on commit 973d53d

Please sign in to comment.