Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
f25c7d9b
Commit
f25c7d9b
authored
Apr 28, 2024
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: serve frontend assets
parent
d8aeec99
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
1 deletion
+24
-1
frontend.go
server/route/frontend/frontend.go
+24
-1
No files found.
server/route/frontend/frontend.go
View file @
f25c7d9b
...
@@ -41,7 +41,7 @@ func NewFrontendService(profile *profile.Profile, store *store.Store) *FrontendS
...
@@ -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) {
...
@@ -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
)
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment