From 88fff43b90737a1b21b4e66e36e1ffe0d6b8a505 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Z=C3=ADpek?= Date: Sun, 21 Aug 2022 23:28:29 +0200 Subject: [PATCH] Updated for new client --- server/main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/main.go b/server/main.go index 3cb3531..9e44638 100644 --- a/server/main.go +++ b/server/main.go @@ -26,8 +26,7 @@ func main() { // Front-end resources router.StaticFile("/", "client/index.html") - router.Static("/js", "client/js") - router.Static("/css", "client/css") + router.Static("/assets", "client/assets") // Only allow CORS in development mode if server.Config.Mode == "development" {