mirror of
https://github.com/runyanjake/cooking.git
synced 2026-06-25 08:04:51 -07:00
9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
export const dynamic = "force-static";
|
|
|
|
export function GET() {
|
|
return new Response("ok\n", {
|
|
status: 200,
|
|
headers: { "Content-Type": "text/plain" },
|
|
});
|
|
}
|