diff options
Diffstat (limited to 'examples/blog/src/pages/rss.xml.js')
-rw-r--r-- | examples/blog/src/pages/rss.xml.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog/src/pages/rss.xml.js b/examples/blog/src/pages/rss.xml.js index 3997cc45e..7d054b92a 100644 --- a/examples/blog/src/pages/rss.xml.js +++ b/examples/blog/src/pages/rss.xml.js @@ -7,7 +7,7 @@ export async function get(context) { return rss({ title: SITE_TITLE, description: SITE_DESCRIPTION, - site: context.site.href, + site: context.site, items: posts.map((post) => ({ ...post.data, link: `/blog/${post.slug}/`, |