From dd0e53b7ac4024cf5ac02d67f923a5694e70075a Mon Sep 17 00:00:00 2001 From: Chris W Date: Sat, 9 Dec 2023 17:48:04 -0700 Subject: [PATCH] add tags to rss feed --- src/pages/posts/rss.xml.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/posts/rss.xml.js b/src/pages/posts/rss.xml.js index 95592a6..5f38bcc 100644 --- a/src/pages/posts/rss.xml.js +++ b/src/pages/posts/rss.xml.js @@ -10,6 +10,7 @@ export async function GET(context) { site: context.site, items: posts.map((post) => ({ ...post.data, + categories: post.data.tags, link: `/posts/${post.slug}/`, })), });