From b25c0701d625d45e493bac7bd951fa23b42b2b18 Mon Sep 17 00:00:00 2001 From: LazuliKao Date: Sat, 21 Sep 2024 15:42:27 +0800 Subject: [PATCH] fix rss --- src/pages/rss.xml.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/rss.xml.js b/src/pages/rss.xml.js index 7fde9f4..f9d32b9 100644 --- a/src/pages/rss.xml.js +++ b/src/pages/rss.xml.js @@ -2,9 +2,9 @@ import rss, { pagesGlobToRssItems } from "@astrojs/rss" export async function get() { return rss({ - title: "Austin's Blog", - description: "Site description", - site: "https://astro-blog.qum.cc", + title: "NBTCA Home", + description: "NBTCA Home Page", + site: "https://www.nbtca.space", items: await pagesGlobToRssItems(import.meta.glob("./**/*.md")), customData: `zh-cn`, })