This commit is contained in:
2026-01-17 15:44:22 +01:00
parent 29168a9778
commit f64cb71170
7 changed files with 366 additions and 0 deletions

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

@@ -0,0 +1,5 @@
export const dynamic = 'force-dynamic';
export async function GET() {
return new Response('OK', { status: 200 });
}