Skip to content

Commit b5bc288

Browse files
committed
fix: use pathname:// for package browser footer link
The footer's Package browser link pointed at /packages/ as a plain internal href, so Docusaurus's broken-link checker flagged it on every page since /packages is a static-only asset with no matching route, even though the file exists under static/packages/ and the link works. download.mdx already used the pathname:// escape hatch for the same target; apply it here too. Assisted-by: Claude Code:claude-sonnet-5
1 parent c7b7b70 commit b5bc288

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ const config: Config = {
147147
items: [
148148
{
149149
label: 'Package browser',
150-
href: '/packages/',
150+
href: 'pathname:///packages/',
151151
},
152152
{
153153
label: 'GitHub',

0 commit comments

Comments
 (0)