Explore different SvelteKit rendering strategies
Static generation at build time with prerender = true.
export const prerender = true
Server-rendered on each request (default).
load function
Client-side only with ssr = false.
export const ssr = false
Progressive streaming with load functions.
await parent() + streamed