From f7d16c5a99bd51fba5e759f3f8ebbc5c66ca9400 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 8 May 2026 13:52:33 +0900 Subject: [PATCH] fix(web): actually ignore .wrangler/ as web/AGENTS.md claims Code-quality review flagged that web/AGENTS.md ANTI-PATTERNS section asserts `.wrangler/` is gitignored, but the rule was missing from web/.gitignore. Adding the rule alongside the other Cloudflare/Next build-output rules so the doc and the file agree. --- web/.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/.gitignore b/web/.gitignore index 1ee9c8e29..769e3b67e 100644 --- a/web/.gitignore +++ b/web/.gitignore @@ -21,6 +21,9 @@ /out/ /.open-next/ +# cloudflare / wrangler +/.wrangler/ + # production /build