Embed Notice
HTML Code
Corresponding Notice
- Embed this notice@alex that's static site generation (SSG), not server side rendering (SSR). SSG is when content is statically generated at build time. SSR is when you run JS on the server to fetch content at runtime, and generate the HTML server side with no JS sent to client (unless you are hydrating it later, but that's a different convo).
Because soapbox is a client-side rendered SPA that is getting content over an API from the rebased backend, there should be no SSR here at all.