1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-11-16 03:10:52 -05:00

a bit more cleanup

This commit is contained in:
2025-03-07 14:56:49 -05:00
parent 354dade9aa
commit 9229f92c0c
23 changed files with 50 additions and 58 deletions

View File

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