11 lines
163 B
TypeScript
11 lines
163 B
TypeScript
export function GET(): Response {
|
|
return Response.json(
|
|
{ status: "ok" },
|
|
{
|
|
headers: {
|
|
"Cache-Control": "no-store",
|
|
},
|
|
},
|
|
);
|
|
}
|