fix: add v1 health endpoint for deployment healthcheck
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s

This commit is contained in:
OG T
2026-06-07 14:49:04 +08:00
parent 53c8ceea99
commit 29482e1ee8

View File

@@ -0,0 +1,8 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({
status: "ok",
service: "web",
});
}