mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 07:25:21 -04:00
12 lines
281 B
TypeScript
12 lines
281 B
TypeScript
import { buildFeed } from "../../lib/helpers/build-feed";
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export const GET = async () => {
|
|
return new Response(await buildFeed({ type: "rss" }), {
|
|
headers: {
|
|
"content-type": "application/rss+xml; charset=utf-8",
|
|
},
|
|
});
|
|
};
|