diff --git a/packages/backend/src/index.ts b/packages/backend/src/index.ts index 8f7ca9f..d8f736b 100644 --- a/packages/backend/src/index.ts +++ b/packages/backend/src/index.ts @@ -12,6 +12,7 @@ const main = async () => { port: Number(PORT), routes: { "/": withCors(() => new Response(`title: eussi\ndev-mode: ${DEV}\nport: ${PORT}`)), + "/health": withCors(() => new Response("OK")), "/auth/register": withCors(routes.authRegister), "/auth/login": withCors(routes.authLogin),