Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
13 lines
300 B
TypeScript
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"',
|
|
},
|
|
});
|
|
}
|