From 973d53d6dc967b347090134662b7eb5efa414caa Mon Sep 17 00:00:00 2001 From: schelmo Date: Wed, 23 Jun 2021 20:12:42 +0200 Subject: [PATCH] fix: do not return the userConfigPath if its null (#4773) --- src/jit/lib/setupWatchingContext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jit/lib/setupWatchingContext.js b/src/jit/lib/setupWatchingContext.js index 40014356bac3..edbf5fba5e6f 100644 --- a/src/jit/lib/setupWatchingContext.js +++ b/src/jit/lib/setupWatchingContext.js @@ -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) {