diff --git a/server/apiServer.ts b/server/apiServer.ts index 424df49d..6a45a09e 100644 --- a/server/apiServer.ts +++ b/server/apiServer.ts @@ -37,7 +37,7 @@ export function createApiServer() { apiServer.use(prefix, authenticated); // WebSocket routes - apiServer.use(`/ws`, wsRouter); + apiServer.use(prefix, wsRouter); // Error handling apiServer.use(notFoundMiddleware);