deploy
All checks were successful
Build & Deploy MB Grid Solutions / build-and-deploy (push) Successful in 1m40s

This commit is contained in:
2026-01-29 11:51:41 +01:00
parent 8176e062ff
commit 47fc471e14
2 changed files with 6 additions and 1 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 });
}