fix: disable SSR for authenticated app pages

WaveSurfer.js accesses window/AudioContext at module load time,
causing SSR to throw undefined on hard reload of track pages.
All (app) routes are auth-gated and fetch data client-side — SSR
provides no benefit here.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Robin Choice
2026-04-16 21:17:59 +02:00
parent c949d6b829
commit e642e63fdc

View File

@@ -0,0 +1 @@
export const ssr = false;