Overview - Page options (SSR, CSR, prerender)
What is it?
Page options in Svelte define how a web page is created and delivered to users. SSR (Server-Side Rendering) means the page is built on the server before sending it to the browser. CSR (Client-Side Rendering) means the page is built in the browser using JavaScript. Prerender means the page is built once ahead of time and served as a static file.
Why it matters
These options affect how fast a page loads, how well it works on different devices, and how search engines see it. Without these choices, websites might be slow, hard to find, or use too much data. Choosing the right option helps make websites faster, more reliable, and easier to use.
Where it fits
Before learning page options, you should understand basic web pages and how browsers work. After this, you can learn about routing, data fetching, and advanced performance techniques in Svelte.