There was an error while loading. Please reload this page.
1 parent 4087d88 commit 71a6501Copy full SHA for 71a6501
1 file changed
app/next-client-app/app/api/health/route.ts
@@ -0,0 +1,9 @@
1
+import { NextResponse } from "next/server";
2
+import packageJson from "../../../package.json";
3
+
4
+export async function GET() {
5
+ return NextResponse.json({
6
+ status: "healthy",
7
+ version: packageJson.version,
8
+ });
9
+}
0 commit comments