Stale Cache & ChunkLoadError
If you have an old version of the dashboard open in a tab and we deploy a new build, your browser may try to load JavaScript chunks that no longer exist. Next.js raises a ChunkLoadError.
What Boottify Does
The app catches ChunkLoadError at the global error boundary and triggers a single automatic reload. After the reload you are on the latest build and the error goes away on its own.
If the Error Sticks
- Hard-reload the page (Cmd/Ctrl + Shift + R).
- Clear the site's cache from your browser's site settings.
- Sign out and back in — this clears any stale session-bound state.
Why Auto-Reload Is Capped at One Attempt
To avoid an infinite reload loop in the unlikely case the new build is also broken, the auto-reload only fires once per page load. If the error returns immediately, the global error UI stays visible so you can take action.