10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export async function GET() {
|
|
return NextResponse.json({
|
|
status: "ok",
|
|
timestamp: new Date().toISOString(),
|
|
});
|
|
}
|