What is Client-Side Rendering?
What is Server-Side Rendering?
Great for static site
SSR is the process of taking a client-side JS framework website and rendering to static HTML and CSS on the server.
CSR vs. SSR
- CSR requires more JS to be downloaded (== more JS to parse)
- CSR has faster website rendering after the initial load
- SSR is possible bottlenecking with site that are very interactive
- SSR can have better SEO