mirror of
https://github.com/AndersPier/v0-v0app.git
synced 2025-10-27 18:16:53 +00:00
Replace incorrect React component with valid one. #VERCEL_SKIP Co-authored-by: Anders Lehmann Pier <3219386+AndersPier@users.noreply.github.com>
13 lines
244 B
TypeScript
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 },
|
|
)
|
|
}
|