diff --git a/src/pages/rss.xml.ts b/src/pages/rss.xml.ts index 0bcdc89..8726a1e 100644 --- a/src/pages/rss.xml.ts +++ b/src/pages/rss.xml.ts @@ -20,7 +20,6 @@ export async function GET(context) { }) .slice(0, 30) .map(([file, post]) => { - console.log("post", { file, post }); return { title: post.frontmatter.title ?? "", pubDate: new Date(post.frontmatter.date), @@ -30,8 +29,6 @@ export async function GET(context) { }; }); - console.log("posts", posts); - return rss({ title: SITE_TITLE, description: SITE_DESCRIPTION,