Skip to content

Commit 6c68142

Browse files
committed
Fix TailwindCSS related server rebuild issue
Fixes #13316
1 parent e08d9af commit 6c68142

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

‎hugolib/hugo_sites_build.go

+13
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import (
2727

2828
"github.com/bep/logg"
2929
"github.com/gohugoio/hugo/bufferpool"
30+
"github.com/gohugoio/hugo/cache/dynacache"
3031
"github.com/gohugoio/hugo/deps"
3132
"github.com/gohugoio/hugo/hugofs"
3233
"github.com/gohugoio/hugo/hugofs/files"
@@ -1062,6 +1063,18 @@ func (h *HugoSites) processPartialFileEvents(ctx context.Context, l logg.LevelLo
10621063

10631064
resourceFiles := h.fileEventsContentPaths(addedOrChangedContent)
10641065

1066+
defer func() {
1067+
// See issue 13316.
1068+
h.MemCache.DrainEvictedIdentitiesMatching(func(ki dynacache.KeyIdentity) bool {
1069+
for _, c := range changes {
1070+
if c.IdentifierBase() == ki.Identity.IdentifierBase() {
1071+
return true
1072+
}
1073+
}
1074+
return false
1075+
})
1076+
}()
1077+
10651078
changed := &WhatChanged{
10661079
needsPagesAssembly: needsPagesAssemble,
10671080
identitySet: make(identity.Identities),

0 commit comments

Comments
 (0)