From d8677c6261c33a7a0d2a05fbda96ea9a0b30ad57 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Thu, 18 Jan 2024 23:40:22 +0100 Subject: [PATCH] hotfix: rss links --- website/src/pages/rss.xml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/rss.xml.js b/website/src/pages/rss.xml.js index 0aeb7bf4..02ecd761 100644 --- a/website/src/pages/rss.xml.js +++ b/website/src/pages/rss.xml.js @@ -9,7 +9,7 @@ export async function GET(context) { 'The Strudel Blog will keep you updated with the latest changes and things happening in the strudelsphere.', site: context.site, items: posts.map((post) => ({ - link: `/${post.slug}/`, + link: `/blog/#${post.slug}`, title: post.data.title, pubDate: post.data.date, description: post.data.description,