From 29482e1ee884a958f2bbf6e0df5e4afea2fefc41 Mon Sep 17 00:00:00 2001 From: OG T Date: Sun, 7 Jun 2026 14:49:04 +0800 Subject: [PATCH] fix: add v1 health endpoint for deployment healthcheck --- apps/web/src/app/api/v1/health/route.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 apps/web/src/app/api/v1/health/route.ts diff --git a/apps/web/src/app/api/v1/health/route.ts b/apps/web/src/app/api/v1/health/route.ts new file mode 100644 index 0000000..2cc9d01 --- /dev/null +++ b/apps/web/src/app/api/v1/health/route.ts @@ -0,0 +1,8 @@ +import { NextResponse } from "next/server"; + +export async function GET() { + return NextResponse.json({ + status: "ok", + service: "web", + }); +}