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" {