mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:01:09 +02:00
perf(web): disable SSR for all local-first apps
All 15 local-first apps now use CSR-only (ssr=false in +layout.ts). Since all data comes from IndexedDB (not server), SSR adds unnecessary roundtrip latency (~3-4s FCP improvement expected). Apps affected: todo, calendar, clock, contacts, zitare, skilltree, citycorners, inventar, photos, mukke, planta, presi, storage, context, questions. Chat and manacore keep SSR for SEO. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
e18ac29807
commit
a81a1535f6
15 changed files with 31 additions and 0 deletions
2
apps/skilltree/apps/web/src/routes/+layout.ts
Normal file
2
apps/skilltree/apps/web/src/routes/+layout.ts
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
// Disable SSR — all data is local-first (IndexedDB + mana-sync)
|
||||
export const ssr = false;
|
||||
Loading…
Add table
Add a link
Reference in a new issue