Skip to content

Commit c7079d6

Browse files
Dumbrisclaude
andauthored
fix: correct Docusaurus edit URL path (smart-mcp-proxy#200)
The editUrl was pointing to /docs/ but docs are at repo root. Docusaurus appends 'docs/' to the editUrl, so the base URL should be just the repo root without any extra path. Changed editUrl from '/docs/' to '/' so paths become correct: - Before: docs/docs/getting-started/installation.md (404) - After: docs/getting-started/installation.md (correct) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5f223a2 commit c7079d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

website/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const config = {
3838
docs: {
3939
routeBasePath: '/', // docs at root
4040
sidebarPath: './sidebars.js',
41-
editUrl: 'https://github.com/smart-mcp-proxy/mcpproxy-go/edit/main/docs/',
41+
editUrl: 'https://github.com/smart-mcp-proxy/mcpproxy-go/edit/main/',
4242
// Only include structured documentation pages
4343
include: [
4444
'getting-started/**/*.{md,mdx}',

0 commit comments

Comments
 (0)