Files
jarv.is/app/feed.xml/route.ts
T

14 lines
280 B
TypeScript

import { NextResponse } from "next/server";
import { buildFeed } from "@/lib/build-feed";
export const GET = () => {
const feed = buildFeed();
return new NextResponse(feed.rss2(), {
headers: {
"content-type": "application/rss+xml; charset=utf-8",
},
});
};