Skip to content

Commit 8290457

Browse files
authored
Merge pull request #359 from objectstack-ai/copilot/fix-build-issues
2 parents 3cab3e0 + d994649 commit 8290457

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.github/workflows/check-links.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
# Use configuration file for path remapping and settings
2727
args: >-
2828
--config lychee.toml
29+
--exclude-path '**/meta.json'
30+
--exclude-path '**/meta.cn.json'
2931
'content/**/*.md'
3032
'content/**/*.mdx'
3133
'README.md'

.lycheeignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@ https://x.com*
1717

1818
# Common false positives
1919
mailto:*
20+
21+
# Fumadocs metadata files (not actual links)
22+
**/meta.json
23+
**/meta.cn.json

lychee.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ exclude = [
5252
"https://x.com*",
5353

5454
# Email links
55-
"mailto:*"
55+
"mailto:*",
56+
57+
# Fumadocs relative links (handled by framework at runtime)
58+
# These are links like ./agent that resolve to .mdx files
59+
"file://**/content/docs/**"
5660
]
5761

5862
# Cache results to speed up subsequent runs

0 commit comments

Comments
 (0)