diff --git a/apps/web/src/app/next_api/health/route.ts b/apps/web/src/app/next_api/health/route.ts new file mode 100644 index 00000000..2ed496f9 --- /dev/null +++ b/apps/web/src/app/next_api/health/route.ts @@ -0,0 +1,13 @@ +import type { NextRequest } from "next/server"; +import { NextResponse } from "next/server"; +// this is here for CDN probePath +export function GET(_: NextRequest): NextResponse { + return NextResponse.json( + { + status: "ok", + }, + { + status: 200, + }, + ); +}