🐛 Fix RSS feed

This commit is contained in:
2025-09-01 17:51:14 -04:00
parent 7d0d9a63d3
commit 4144eb7fdf
2 changed files with 2 additions and 2 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -16,7 +16,7 @@ export async function GET(context) {
.map((post) => ({
title: post.data.title,
pubDate: post.data.pubDate,
link: `/blog/${post.slug}`,
link: `/blog/${post.id}`,
categories: post.data.tags,
content: parser.render(post.body),
})),