forked from alchemyplatform/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlychee.toml
More file actions
20 lines (17 loc) · 1002 Bytes
/
lychee.toml
File metadata and controls
20 lines (17 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Base URL or website root directory to check relative URLs.
base_url = "https://www.alchemy.com"
# Timeout in seconds for each request
timeout = 10
# Exclude links with these patterns
exclude = [
"(?i).*\\.png$", # All PNG files (case insensitive) - relative asset paths won't work
"(?i).*\\.jpe?g$", # All JPEG/JPG files (case insensitive) - relative asset paths won't work
".*\\{.*\\}.*", # Any path containing curly braces {} - code examples aren't crawlable links
".*g\\.alchemy\\.com.*", # Any path containing g.alchemy.com - RPC endpoints require API keys
".*\\.mdx$", # Links to MDX files - these should only be for snippets, not HTML pages
]
# Include these patterns even if they match exclude patterns
include = [
"(?i).*cloudinary\\.com.*\\.png$", # PNG files from Cloudinary (case insensitive)
"(?i).*cloudinary\\.com.*\\.jpe?g$", # JPEG/JPG files from Cloudinary (case insensitive)
]