fixed comment typo

This commit is contained in:
Gani Georgiev 2024-11-28 15:21:19 +02:00
parent ab7194a639
commit 79f6f4ee60
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ func Serve(app core.App, config ServeConfig) error {
pbRouter.GET("/_/{path...}", Static(ui.DistDirFS, false)). pbRouter.GET("/_/{path...}", Static(ui.DistDirFS, false)).
BindFunc(func(e *core.RequestEvent) error { BindFunc(func(e *core.RequestEvent) error {
// ingore root path // ignore root path
if e.Request.PathValue(StaticWildcardParam) != "" { if e.Request.PathValue(StaticWildcardParam) != "" {
e.Response.Header().Set("Cache-Control", "max-age=1209600, stale-while-revalidate=86400") e.Response.Header().Set("Cache-Control", "max-age=1209600, stale-while-revalidate=86400")
} }