mirror of
https://github.com/usememos/memos.git
synced 2025-04-17 19:07:26 +02:00
fix: serve frontend assets
This commit is contained in:
parent
d8aeec993c
commit
f25c7d9b24
@ -41,7 +41,7 @@ func NewFrontendService(profile *profile.Profile, store *store.Store) *FrontendS
|
|||||||
|
|
||||||
func (s *FrontendService) Serve(ctx context.Context, e *echo.Echo) {
|
func (s *FrontendService) Serve(ctx context.Context, e *echo.Echo) {
|
||||||
// Use echo static middleware to serve the built dist folder.
|
// Use echo static middleware to serve the built dist folder.
|
||||||
// refer: https://github.com/labstack/echo/blob/master/middleware/static.go
|
// Reference: https://github.com/labstack/echo/blob/master/middleware/static.go
|
||||||
e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
|
e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
|
||||||
HTML5: true,
|
HTML5: true,
|
||||||
Filesystem: getFileSystem("dist"),
|
Filesystem: getFileSystem("dist"),
|
||||||
@ -50,6 +50,29 @@ func (s *FrontendService) Serve(ctx context.Context, e *echo.Echo) {
|
|||||||
},
|
},
|
||||||
}))
|
}))
|
||||||
|
|
||||||
|
g := e.Group("assets")
|
||||||
|
// Use echo gzip middleware to compress the response.
|
||||||
|
// Reference: https://echo.labstack.com/docs/middleware/gzip
|
||||||
|
g.Use(middleware.GzipWithConfig(middleware.GzipConfig{
|
||||||
|
Skipper: func(c echo.Context) bool {
|
||||||
|
return util.HasPrefixes(c.Path(), "/api", "/memos.api.v1", "/robots.txt", "/sitemap.xml", "/m/:name")
|
||||||
|
},
|
||||||
|
Level: 5,
|
||||||
|
}))
|
||||||
|
g.Use(func(next echo.HandlerFunc) echo.HandlerFunc {
|
||||||
|
return func(c echo.Context) error {
|
||||||
|
c.Response().Header().Set(echo.HeaderCacheControl, "max-age=31536000, immutable")
|
||||||
|
return next(c)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
g.Use(middleware.StaticWithConfig(middleware.StaticConfig{
|
||||||
|
HTML5: true,
|
||||||
|
Filesystem: getFileSystem("dist/assets"),
|
||||||
|
Skipper: func(c echo.Context) bool {
|
||||||
|
return util.HasPrefixes(c.Path(), "/api", "/memos.api.v1", "/robots.txt", "/sitemap.xml", "/m/:name")
|
||||||
|
},
|
||||||
|
}))
|
||||||
|
|
||||||
s.registerRoutes(e)
|
s.registerRoutes(e)
|
||||||
s.registerFileRoutes(ctx, e)
|
s.registerFileRoutes(ctx, e)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user