From 150ff353e2ff4d955bbf1d87f84503b837c6ef81 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Mon, 2 Feb 2026 11:49:11 +0100 Subject: [PATCH] Remove deprecated http header fields Signed-off-by: Bryan Frimin --- pkg/server/statichandler/statichandler.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/server/statichandler/statichandler.go b/pkg/server/statichandler/statichandler.go index 2df25b713..704774a93 100644 --- a/pkg/server/statichandler/statichandler.go +++ b/pkg/server/statichandler/statichandler.go @@ -134,8 +134,6 @@ func (s *Server) ServeSPA(w http.ResponseWriter, r *http.Request) { } w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate") - w.Header().Set("Pragma", "no-cache") - w.Header().Set("Expires", "0") w.WriteHeader(http.StatusOK) w.Write(s.indexContent)