diff --git a/frontend/webserver.go b/frontend/webserver.go index eacf303..46dc401 100644 --- a/frontend/webserver.go +++ b/frontend/webserver.go @@ -214,7 +214,10 @@ func webServerStart(l net.Listener) { } fs := http.FileServer(http.FS(subfs)) - http.Handle("/static/", fs) + http.HandleFunc("/static/", func(w http.ResponseWriter, r *http.Request) { + w.Header().Set("Cache-Control", "public, max-age=86400") + fs.ServeHTTP(w, r) + }) http.Handle("/robots.txt", fs) http.Handle("/favicon.ico", fs)