GRV-Summit-Site/app/calendar/route.ts
“kirukib” 1a710aa3c6
Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
first commit + project setup
2026-05-20 11:57:21 +03:00

13 lines
300 B
TypeScript

import { buildIcsFileContent } from "@/lib/calendar";
export function GET() {
const ics = buildIcsFileContent();
return new Response(ics, {
headers: {
"Content-Type": "text/calendar; charset=utf-8",
"Content-Disposition": 'attachment; filename="grv-summit.ics"',
},
});
}