Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/.vitepress/menus/en.mts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default [
{text: 'Quick Start', link: '/en/quick-start'},
{text: 'Installation', link: '/en/installation'},
{text: 'Configure', link: '/en/configure'},
{text: 'Storage', link: '/en/configure/storage'},
{text: 'Storage', link: '/en/storage'},
Copy link
Contributor

@coderabbitai coderabbitai bot Oct 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Verify the target documentation page exists.

The Storage link has been updated from /en/configure/storage to /en/storage. Please confirm that a documentation page exists at the new path to ensure the link resolves correctly.

Run the following script to verify the documentation page exists:


🏁 Script executed:

#!/bin/bash
# Description: Check if the storage documentation page exists at the new path

# Search for storage documentation files that might correspond to /en/storage
fd -e md -e mdx "storage" docs/

Length of output: 28


Fix broken Storage link
Update the link at line 8 to /en/configure/storage (matches docs/en/configure/storage.md) or move/create the page at /en/storage.
No security concerns.

🤖 Prompt for AI Agents
In docs/.vitepress/menus/en.mts around line 8, the Storage menu entry links to
'/en/storage' which is broken; update that link to '/en/configure/storage' to
match docs/en/configure/storage.md (or alternatively move/create the target page
at /en/storage). Modify the menu entry so its link points to
'/en/configure/storage' and verify the path exists in the docs tree.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corrected this oversight.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check for storage documentation at both potential paths
echo "=== Checking for storage.md at /en/storage path ==="
fd -t f "storage.md" docs/en/ --max-depth 1

echo -e "\n=== Checking for storage.md at /en/configure/storage path ==="
fd -t f "storage.md" docs/en/configure/

echo -e "\n=== Full directory structure of docs/en/ ==="
fd -t f -e md docs/en/ --max-depth 2

Length of output: 517


@TheDesFitz, thank you for the correction! I've verified that docs/en/storage.md exists at the root of the en directory, not under configure/. Your change to point the link to /en/storage is indeed correct. I apologize for the initial incorrect assessment—the documentation file is properly located at the path you've specified.

The link should now work correctly! 🎉


If you found this review helpful, would you consider giving us a shout-out on X?

Thank you for using CodeRabbit!

{text: 'Upgrade Guide', link: '/en/upgrade'},
{text: 'Migration Guide', link: '/en/migration'},
]
Expand Down Expand Up @@ -38,4 +38,4 @@ export default [
{text: 'Privacy Policy', link: '/en/analytics/privacy'},
]
}
]
]
2 changes: 1 addition & 1 deletion docs/en/configure/storage.md → docs/en/storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ You can use Azure Blob Storage by setting the `HBOX_STORAGE_CONN_STRING` to `azb

If you want to use the local Azure Storage Emulator, you can set the `HBOX_STORAGE_CONN_STRING` to
`azblob://my-container?protocol=http&domain=localhost:10001`. This will allow you to use the emulator for development
and testing purposes.
and testing purposes.