Change max age on cache-control in production

This commit is contained in:
video-prize-ranch 2023-08-16 11:46:41 -04:00
parent d490581c44
commit 877ee7faa9
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -72,8 +72,7 @@ func main() {
if os.Getenv("ENV") == "dev" {
app.Use("/static", filesystem.New(filesystem.Config{
MaxAge: 2592000,
Root: http.Dir("./static"),
Root: http.Dir("./static"),
}))
app.Get("/errors/429", func(c *fiber.Ctx) error {
return c.Render("errors/429", nil)
@ -88,6 +87,7 @@ func main() {
})
} else {
app.Use("/static", filesystem.New(filesystem.Config{
MaxAge: 2592000,
Root: http.FS(static.GetFiles()),
}))
app.Use(cache.New(cache.Config{