mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-09-11 11:25:35 -04:00
14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
import { buildFeed } from "@/lib/build-feed";
|
|
|
|
export const GET = () => {
|
|
const feed = buildFeed();
|
|
|
|
return new NextResponse(feed.atom1(), {
|
|
headers: {
|
|
"content-type": "application/atom+xml; charset=utf-8",
|
|
},
|
|
});
|
|
};
|