From a0ea3f25a00d8da1e179d4aa699bb0dcd65bebdc Mon Sep 17 00:00:00 2001 From: shannonbradshaw Date: Mon, 20 Apr 2026 17:13:38 -0400 Subject: [PATCH] Add skipPatterns to default no-more-404 block for production PR #4986 reverted the bloated skipPatterns to just /tags/ in the deploy-preview and branch-deploy contexts, but the default [plugins.inputs] block (used in production) still has empty skipPatterns. Production deploy is failing on 12 auto-generated /tags/* paths. Add the same slim skipPatterns list to the default block. Co-Authored-By: Claude Opus 4.6 (1M context) --- netlify.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netlify.toml b/netlify.toml index 39c54f50fc..2893f9cec5 100644 --- a/netlify.toml +++ b/netlify.toml @@ -534,6 +534,8 @@ # (for development) turn true for extra diagnostic logging debug = true + skipPatterns = ["/dev/", "/reference/components/", "/reference/services/", "/reference/account/", "/reference/advanced-modules/", "/reference/glossary_tmp/", "/reference/module-configuration/", "/reference/configuration/", "/tags/"] + [[context.deploy-preview.plugins]] package = "@eggnstone/netlify-plugin-no-more-404"