17 lines
275 B
TypeScript
17 lines
275 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export function GET() {
|
|
return NextResponse.json(
|
|
{
|
|
status: "ok",
|
|
timestamp: new Date().toISOString(),
|
|
},
|
|
{
|
|
status: 200,
|
|
headers: {
|
|
"Cache-Control": "no-store",
|
|
},
|
|
},
|
|
);
|
|
}
|