1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-05-15 21:54:25 -04:00
Files
jarv.is/app/feed.atom/route.ts
T
2025-02-07 11:33:38 -05:00

12 lines
283 B
TypeScript

import { buildFeed } from "../../lib/helpers/build-feed";
export const dynamic = "force-static";
export const GET = async () => {
return new Response(await buildFeed({ type: "atom" }), {
headers: {
"content-type": "application/atom+xml; charset=utf-8",
},
});
};