Skip to content

Commit d586b21

Browse files
committed
Fix cache key
1 parent 68bd3cd commit d586b21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export async function getTailwindConfig(
5555
}
5656

5757
// Now see if we've loaded the Tailwind config file before (and it's still valid)
58-
let contextKey = `${configPath}:${entryPoint}`
58+
let contextKey = `${pkgName}:${configPath}:${entryPoint}`
5959
let existing = pathToContextMap.get(contextKey)
6060
if (existing) {
6161
return existing

0 commit comments

Comments
 (0)