We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67ee5e0 commit f1e3168Copy full SHA for f1e3168
src/jit/lib/setupContextUtils.js
@@ -558,6 +558,11 @@ export function getContext(
558
contextSourcesMap.get(oldContext).delete(sourcePath)
559
if (contextSourcesMap.get(oldContext).size === 0) {
560
contextSourcesMap.delete(oldContext)
561
+ for (let [tailwindConfigHash, context] of configContextMap) {
562
+ if (context === oldContext) {
563
+ configContextMap.delete(tailwindConfigHash)
564
+ }
565
566
for (let disposable of oldContext.disposables.splice(0)) {
567
disposable(oldContext)
568
}
0 commit comments