diff --git a/api/main.go b/api/main.go index 2a2d5c83..dd85ed17 100644 --- a/api/main.go +++ b/api/main.go @@ -197,6 +197,10 @@ func main() { w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate") w.Header().Set("Pragma", "no-cache") w.Header().Set("Expires", "0") + } else if r.URL.Path == "/" { + w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate") + w.Header().Set("Pragma", "no-cache") + w.Header().Set("Expires", "0") } fs.ServeHTTP(w, r) })