From 4a04de9a4f57f9b8f59679bf57b078715fb8236b Mon Sep 17 00:00:00 2001 From: ruinivist <179396038+ruinivist@users.noreply.github.com> Date: Sat, 30 May 2026 13:48:46 +0000 Subject: [PATCH] fix: refine bundle caching and remove dev logging artifacts - Update static file fetcher in `server.tsx` to apply `public, max-age=31536000, immutable` headers only to minified assets identified by a hash pattern (e.g., `chunk-xxxxxx.js`). - Apply `no-cache` header explicitly to unhashed files (such as `index.html`) to ensure the latest entrypoint is always served. - Removed dev artifacts, build output files, and patches from the workspace to clean up the branch. - Reverted unintentional `React.lazy` changes in `src/App.tsx` as requested.