mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
18 lines
661 B
TOML
18 lines
661 B
TOML
# Cache the results of Lychee if ran locally in order to minimise the chance of rate limiting
|
|
cache = true
|
|
# Ignore all private link (such as localhost) to avoid errors
|
|
exclude_all_private = true
|
|
# HTTP status code: 429 (Too Many Requests) will also be treated as a valid link if Lychee gets rate limited
|
|
accept = [200, 429]
|
|
# retry
|
|
max_retries = 6
|
|
# Explicitly exclude some URLs
|
|
exclude = [
|
|
"https://twitter.nuxt.dev/",
|
|
"https://cssnano.co/",
|
|
"https://github.com/nuxt/translations/discussions/4",
|
|
"https://stackoverflow.com/help/minimal-reproducible-example",
|
|
# single-quotes are required for regexp
|
|
'(https?:\/\/github\.com\/)(.*\/)(generate)',
|
|
]
|