diff --git a/backend/app/rest/api/rest.go b/backend/app/rest/api/rest.go index 2e667ab023..37ca770cdd 100644 --- a/backend/app/rest/api/rest.go +++ b/backend/app/rest/api/rest.go @@ -495,6 +495,8 @@ func addFileServer(r chi.Router, embedFS embed.FS, webRoot, version string) { http.NotFound(w, r) return } + // without it it would be set to "max-age=3600, no-cache" which is redundant + w.Header().Set("Cache-Control", "no-cache") webFS.ServeHTTP(w, r) }) }