From f1fad59a89207cefc1987dd33f1715f0166f9c10 Mon Sep 17 00:00:00 2001 From: Dermot Duffy Date: Sun, 24 May 2026 10:02:10 -0700 Subject: [PATCH] chore: Small fixes to clean docs link checker results (#2505) --- docs/configuration/live.md | 2 +- lychee.toml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/configuration/live.md b/docs/configuration/live.md index c45ae47b..894d89c4 100644 --- a/docs/configuration/live.md +++ b/docs/configuration/live.md @@ -66,7 +66,7 @@ live: > until the page has received a user gesture (e.g. a tap or click). When that > happens no sound is produced and no error is shown. The underlying behavior is > documented in [MDN's Autoplay -> guide](https://developer.mozilla.org/en-US/docs/Web/Media/Autoplay_guide). +> guide](https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Autoplay). #### `ringtone` diff --git a/lychee.toml b/lychee.toml index 6cd64a05..5a2f0b1e 100644 --- a/lychee.toml +++ b/lychee.toml @@ -2,6 +2,10 @@ exclude_path = [ "node_modules", "vscode://" ] +exclude = [ + # npmjs.com returns 403 to lychee's user-agent. + "^https://www\\.npmjs\\.com/" +] timeout = 20 max_retries = 3 accept = [200, 204]