diff --git a/server/api/image.go b/server/api/image.go index c5fc4d5..dfee14b 100644 --- a/server/api/image.go +++ b/server/api/image.go @@ -45,6 +45,7 @@ func handleGetImage(c fiber.Ctx) error { } contentType := http.DetectContentType(image) c.Set("Content-Type", contentType) + c.Set("Cache-Control", "public, max-age=31536000") return c.Send(image) }