Skip to content

Commit dc0346b

Browse files
stephanjclaude
andcommitted
fix: use absolute URL for RSS feed link to pass broken link checker
Docusaurus's broken link checker validates all internal paths (starting with /) against its known routes. /blog/rss.xml is a generated file, not a route, so the checker flagged it as broken on every page that renders the footer — causing the CI build to fail. Using the full absolute URL makes Docusaurus treat it as an external link and skip the internal validation. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2c04eb8 commit dc0346b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docusaurus/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ const config = {
242242
},
243243
{
244244
label: 'RSS Feed',
245-
href: '/blog/rss.xml',
245+
href: 'https://genie.devoxx.com/blog/rss.xml',
246246
},
247247
{
248248
label: 'GitHub',

0 commit comments

Comments
 (0)