The rendering strategy decides where and when HTML is built, which drives the loading metrics. There's no universal best — match it to how dynamic and personalized the content is.
The strategies
text
CSR Server sends near-empty HTML + JS ──▶ browser fetches data ──▶ renders (slow first paint)
SSR Server renders full HTML per request ──▶ browser shows it ──▶ hydrates (fresh, TTFB cost)
SSG HTML built ONCE at deploy ──▶ served from CDN ──▶ hydrates (fastest, static)
Stream Server flushes HTML in chunks as ready ──▶ shell first, data fills in (fast TTFB + fresh)
