diff --git a/service/router/A_ENTER.go b/service/router/A_ENTER.go index 37935c1..5639888 100644 --- a/service/router/A_ENTER.go +++ b/service/router/A_ENTER.go @@ -26,6 +26,7 @@ func InitRouters(addr string) error { webPath := "./web" router.StaticFile("/", webPath+"/index.html") router.Static("/assets", webPath+"/assets") + router.Static("/custom", webPath+"/custom") router.StaticFile("/favicon.ico", webPath+"/favicon.ico") router.StaticFile("/favicon.svg", webPath+"/favicon.svg") }