From 5a2cfab68529f69ff147d6ed0e1544f67e69b17e Mon Sep 17 00:00:00 2001 From: Sindre Kjelsrud Date: Sun, 17 Dec 2023 23:11:29 +0100 Subject: [PATCH] :bug: trying to fix RSS bug Signed-off-by: Sindre Kjelsrud --- src/content/blog/small_web.md | 9 +++++---- src/pages/rss.xml.js | 7 +++++++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/content/blog/small_web.md b/src/content/blog/small_web.md index 6efe350..b987b0c 100644 --- a/src/content/blog/small_web.md +++ b/src/content/blog/small_web.md @@ -26,9 +26,10 @@ But where do you find these websites? Good question! You can find them by just g - [**The Forest**](https://theforest.link/) - [**bearblog.dev**](https://bearblog.dev/) - [**Neocities**](https://neocities.org/browse) -- The different performance-focused clubs like: - - [**1MB Club**](https://1mb.club/) - - [**512KB Club**](https://512kb.club/) - - [**1kB Club**](https://1kb.club/). + +And the different performance-focused clubs like: +- [**1MB Club**](https://1mb.club/) +- [**512KB Club**](https://512kb.club/) +- [**1kB Club**](https://1kb.club/). On an ending note I think you should explore the web like you're wandering through a forest. Every click takes you somewhere new. Have fun finding your way and seeing what's around each corner of the web. \ No newline at end of file diff --git a/src/pages/rss.xml.js b/src/pages/rss.xml.js index 811cc42..82a0841 100644 --- a/src/pages/rss.xml.js +++ b/src/pages/rss.xml.js @@ -14,5 +14,12 @@ export async function GET(context) { customData: post.data.customData, link: `/blog/${post.slug}/`, })), + source: { + title: 'Sindre Kjelsrud', + url: 'http://kjelsrud.dev/rss.xml', + }, + enclosure: { + url: '/public' + }, }); } \ No newline at end of file