diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-06 11:21:27 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-06 11:21:27 +0300 |
commit | 2f362eaf0937360a0f2a81bac41be81111fa06a8 (patch) | |
tree | c4112b7007de8f2a6dc498b81ab02ab68f126834 /src/pages/feed.xml.js | |
parent | 17c3115a0608bb7ef42c8038b36f24b2356004ec (diff) | |
download | popov.link-2f362eaf0937360a0f2a81bac41be81111fa06a8.tar.xz popov.link-2f362eaf0937360a0f2a81bac41be81111fa06a8.zip |
Added reading time timer
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"); |