diff --git a/src/jit/lib/setupContextUtils.js b/src/jit/lib/setupContextUtils.js index 2506d37ad..60a1899e2 100644 --- a/src/jit/lib/setupContextUtils.js +++ b/src/jit/lib/setupContextUtils.js @@ -478,9 +478,8 @@ export function getContext( getTailwindConfig ) { let sourcePath = result.opts.from - let [tailwindConfig, userConfigPath, tailwindConfigHash, configDependencies] = getTailwindConfig( - configOrPath - ) + let [tailwindConfig, userConfigPath, tailwindConfigHash, configDependencies] = + getTailwindConfig(configOrPath) let isConfigFile = userConfigPath !== null let contextDependencies = new Set(configDependencies) @@ -582,10 +581,7 @@ export function getContext( stylesheetCache: null, // Hit } - if (!existingContext) { - // If we didn't have an existing modified map then populate it now. - trackModified([...contextDependencies], context) - } + trackModified([...contextDependencies], context) // ---