From 8da95f5183cce76c0a31dd881d943e27b20d3e80 Mon Sep 17 00:00:00 2001 From: Leo Date: Fri, 7 Nov 2025 21:19:49 -0500 Subject: [PATCH] chore: force Vercel cache rebuild MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build was failing due to Next.js cache corruption. This commit forces Vercel to rebuild with fresh cache. Issue: TypeScript errors on valid imports (logWarn) Root cause: Stale .next cache Local fix: rm -rf .next && bun run build (works in 42s) Vercel fix: This commit triggers fresh build Expected result: Build should complete in ~2-3 minutes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/web/.vercel-cache-bust | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 apps/web/.vercel-cache-bust diff --git a/apps/web/.vercel-cache-bust b/apps/web/.vercel-cache-bust new file mode 100644 index 00000000..c008b78c --- /dev/null +++ b/apps/web/.vercel-cache-bust @@ -0,0 +1,6 @@ +# Vercel Cache Bust + +This file forces Vercel to rebuild with a fresh cache. + +Build timestamp: 2025-11-08T02:10:00Z +Reason: Fix build cache corruption issue