What is server-side rendering (SSR) in Angular?
- SSR means rendering the app’s HTML on the server before sending it to the client.
- With Angular Universal, the app runs on Node.js server rendering Angular
components into HTML.
- The client then takes over via Angular’s client-side rendering (hydration).