From 05a5ac5be46a658b43c4535b9a1ac671a8272c4f Mon Sep 17 00:00:00 2001 From: borst <160541292+StephenBorst@users.noreply.github.com> Date: Tue, 7 Apr 2026 18:25:56 -0600 Subject: [PATCH] Enhance .gitignore for Vercel and cache management Updated .gitignore to include Vercel and cache directories, while keeping manifest.json tracked. --- .gitignore | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 56972b9d8..e628de776 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,17 @@ -node_modules +# Node / package managers +node_modules/ -/.cache -/build +# Vercel (never commit) +.vercel/ + +# Caches / build outputs +/.cache/ +/build/ + +# Local config / tooling .npmrc .specstory -# SpecStory explanation file .specstory/.what-is-this.md -/public/manifest.json + +# Keep tracked +!/public/manifest.json