Is there a way to combine CSR and SSR for the same Angular app?
08:25 30 Apr 2020

My Team is looking to build something like a Medium clone. The posts created by users are not expected to change much, so SSR/SSG seems like a good option, especially if there's some incremental build feature available. However, things like 'upvotes' on posts can change very frequently, so we are unsure how to accommodate that.

Also a part of the app that will lie beyond a login, like Dashboard, or an editor to create a new post... etc, doesn't need SEO, so we were thinking if that could be done via CSR, while other parts remained SSG or SSR.

Can such a combination be done with Angular Universal? We have been making CSR Angular SPA-s only till now, so apologies if the questions are a bit dumb :(

angular server-side-rendering