diff options
Diffstat (limited to 'src/pages/feed.xml.js')
-rw-r--r-- | src/pages/feed.xml.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/feed.xml.js b/src/pages/feed.xml.js index 0fcc82f..a509386 100644 --- a/src/pages/feed.xml.js +++ b/src/pages/feed.xml.js @@ -1,5 +1,5 @@ -import rss from "@astrojs/rss"; import { getCollection } from "astro:content"; +import rss from "@astrojs/rss"; export async function GET(context) { const posts = await getCollection("blog"); |