From 57c2a64d8ab555823ec025dda4f897f1915a2829 Mon Sep 17 00:00:00 2001 From: Dan Moore Date: Wed, 16 Aug 2023 15:40:35 -0600 Subject: [PATCH] No trailing slash for blog items. (#2460) This is based on this PR: https://github.com/withastro/astro/pull/6453 which landed a few months ago. --- astro/src/pages/blog/feed.xml.js | 1 + 1 file changed, 1 insertion(+) diff --git a/astro/src/pages/blog/feed.xml.js b/astro/src/pages/blog/feed.xml.js index 5251333aa9..0cd5d122f1 100644 --- a/astro/src/pages/blog/feed.xml.js +++ b/astro/src/pages/blog/feed.xml.js @@ -18,6 +18,7 @@ export async function get(context) { title: "FusionAuth Blog", description: "The FusionAuth blog offers all kinds of insight on software development, authentication and the FusionAuth product.", site: context.site, + trailingSlash: false, items: blog.map(convertToRSS) }); }