Add back index.xml page for rss

This commit is contained in:
2026-05-06 10:29:28 +02:00
parent 7576aa9075
commit 43b15307c3
+6
View File
@@ -0,0 +1,6 @@
import type { APIContext } from "astro";
import { GET as rssGET } from "./rss.xml";
export async function GET(context: APIContext) {
return rssGET(context);
}