From 5b4672534dda6afd1583326589e1e87ec9ad8b89 Mon Sep 17 00:00:00 2001 From: TechAlchemistX Date: Sat, 20 Jun 2026 18:25:57 -0400 Subject: [PATCH] docs: allow CHANGELOG.md repo-root link in ignoreDeadLinks mcp.md links to ../../CHANGELOG.md (valid on GitHub, not a VitePress page), which failed `vitepress build`. CHANGELOG is the same repo-root-link category already allowed for README/CONTRIBUTING/SECURITY/LICENSE/CLA; add it so the site builds clean. Co-Authored-By: Claude Opus 4.8 (1M context) --- docs/.vitepress/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 35f096d..f72f46f 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -42,7 +42,7 @@ export default defineConfig({ // Cross-links to repo-root files (work in GitHub repo browsing, not in the docs site). // VitePress normalises ./../../README, ../../README, and ../README: match all variants. /README(\.md)?(#|$)/, - /(CONTRIBUTING|SECURITY|LICENSE|CLA)(\.md)?(#|$)/, + /(CONTRIBUTING|SECURITY|LICENSE|CLA|CHANGELOG)(\.md)?(#|$)/, ], themeConfig: {