feat: add healthcheck endpoint

This commit is contained in:
2026-01-13 14:52:57 +01:00
parent 5ffbc2e3d3
commit 352212c0e0
3 changed files with 21 additions and 0 deletions

5
app/api/health/route.ts Normal file
View File

@@ -0,0 +1,5 @@
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ status: 'ok' }, { status: 200 });
}