diff --git a/backend/src/server.ts b/backend/src/server.ts index dab9e68..b488b4a 100644 --- a/backend/src/server.ts +++ b/backend/src/server.ts @@ -43,7 +43,7 @@ class App { private initializeRoutes(routes: Array): void { routes.forEach((route) => { - this.app.use("./", route); + this.app.use("/", route); }); }