From 673d86215bff68d9bbe92168827aec6d1d544e91 Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Tue, 22 Oct 2024 21:36:58 -0500 Subject: [PATCH] fix link in rss --- src/pages/rss.xml.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/rss.xml.ts b/src/pages/rss.xml.ts index a0ddea8..eb384ce 100644 --- a/src/pages/rss.xml.ts +++ b/src/pages/rss.xml.ts @@ -12,7 +12,7 @@ export async function GET(context) { title: post.data.title, pubDate: post.data.date, // ...post.data, - link: `/blog/${post.slug}/`, + link: `/${post.slug}/`, })), }); }