Skip to content

Commit 038baaa

Browse files
Copilothuangyiirene
andcommitted
fix: correct VitePress-style links and update lychee config
- Fix absolute path links in docs/index.md to use relative paths - Update lychee.toml to exclude VitePress internal routing patterns - Add exclusions for /guide/ and /spec/ paths used in frontmatter Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com>
1 parent 1298145 commit 038baaa

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -481,9 +481,9 @@ permission_set:
481481

482482
### Next Steps
483483

484-
- [Architecture Guide](/guide/architecture) - Deep dive into the kernel design
485-
- [Plugin Development](/guide/logic-hooks) - Extend ObjectOS with custom logic
486-
- [Sync Protocol](/spec/http-protocol) - Build offline-first clients
484+
- [Architecture Guide](./guide/architecture.md) - Deep dive into the kernel design
485+
- [Plugin Development](./guide/logic-hooks.md) - Extend ObjectOS with custom logic
486+
- [Sync Protocol](./spec/http-protocol.md) - Build offline-first clients
487487

488488
---
489489

lychee.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ exclude = [
88

99
# Anchor links (internal page references)
1010
"^#",
11+
12+
# VitePress internal routing (absolute paths in frontmatter)
13+
"^/guide/",
14+
"^/spec/",
1115
]
1216

1317
# HTTP request timeout in seconds

0 commit comments

Comments
 (0)