Files
v0-v0app/app/api/health/route.ts
v0 da55b8b7dd fix: remove invalid <config> element in app/page.tsx
Replace incorrect React component with valid one.

#VERCEL_SKIP

Co-authored-by: Anders Lehmann Pier <3219386+AndersPier@users.noreply.github.com>
2025-06-19 22:07:32 +00:00

13 lines
244 B
TypeScript

import { NextResponse } from "next/server"
export async function GET() {
return NextResponse.json(
{
status: "healthy",
timestamp: new Date().toISOString(),
service: "markdown-editor",
},
{ status: 200 },
)
}