Why I switched to a Static Site Generator
Static Site Generators (SSGs) pre-generate all site pages at build time, producing plain HTML files that load almost instantly for users because there is no need for server processing. In contrast, Server-Side Rendering (SSR) renders each page on demand with every user request, which requires a running server (of course) and will lead to slower load times when the page isn’t cached. To add further contrast, Client-Side Rendering (CSR) usually causes the slowest initial load time because even when a page is cached, all dynamic content will need to be fetched and rendered by the client’s (your) computer. ...