refactor: move healthcheck to /health and exclude from i18n

This commit is contained in:
2026-01-13 15:27:05 +01:00
parent bf2d939efe
commit b28fadb684
4 changed files with 3 additions and 3 deletions

5
app/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 });
}