From 448a640970fae6be513b5e797a6dd1e277a898ad Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Sat, 25 Jul 2026 14:36:25 -0700 Subject: [PATCH 1/2] fix(vercel): skip `quic.md` on previews --- scripts/vercel-build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/vercel-build.sh b/scripts/vercel-build.sh index 46e98755..f1c668fb 100755 --- a/scripts/vercel-build.sh +++ b/scripts/vercel-build.sh @@ -11,6 +11,7 @@ node bin/cli.mjs generate \ -t llms-txt \ -t web \ -i "./node/doc/api/*.md" \ + --exclude "./node/doc/api/quic.md" \ -o "./out" \ -c "./node/CHANGELOG.md" \ -v "$NODE_VERSION" \ From 514a58f8df8a13a46dd050db1801bae3b5caba22 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Sat, 25 Jul 2026 14:37:17 -0700 Subject: [PATCH 2/2] --ignore --- scripts/vercel-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/vercel-build.sh b/scripts/vercel-build.sh index f1c668fb..856f9eb5 100755 --- a/scripts/vercel-build.sh +++ b/scripts/vercel-build.sh @@ -11,7 +11,7 @@ node bin/cli.mjs generate \ -t llms-txt \ -t web \ -i "./node/doc/api/*.md" \ - --exclude "./node/doc/api/quic.md" \ + --ignore "./node/doc/api/quic.md" \ -o "./out" \ -c "./node/CHANGELOG.md" \ -v "$NODE_VERSION" \