From a447a0470b6b989f9f43747fc6aca8a61bc59e2b Mon Sep 17 00:00:00 2001 From: Sun <95302870@qq.com> Date: Wed, 17 Jan 2024 19:36:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=87=AA=E5=AE=9A=E4=B9=89cs?= =?UTF-8?q?s=E3=80=81js=E6=97=A0=E6=95=88=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- service/router/A_ENTER.go | 1 + 1 file changed, 1 insertion(+) 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") }