diff --git a/ui/web.go b/ui/web.go index a866ca49..53aba9f6 100644 --- a/ui/web.go +++ b/ui/web.go @@ -40,7 +40,7 @@ func serveAsset(w http.ResponseWriter, req *http.Request, fp string) { return } - w.Header().Set("Cache-Control", "no-cache") + w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate") http.ServeContent(w, req, info.Name(), info.ModTime(), bytes.NewReader(file)) }