Files

8 lines
186 B
TypeScript

import { NextResponse } from "next/server";
export const runtime = "edge";
export function GET() {
return NextResponse.json({ status: "ok", timestamp: new Date().toISOString() });
}