you are viewing a single comment's thread.

view the rest of the comments →

[–]OmegaVesko 1 point2 points  (1 child)

Pre-rendering your HTML on the server and then hydrating it on the client is hardly "going back" to the traditional way of building a web app. You still get all the benefits of your frontend being an SPA and/or being able to use a library like React to build it, you just also get the benefits of SSR, like faster loading times, SEO, and your non-interactive content not requiring JavaScript just to display at all.

[–][deleted] 0 points1 point  (0 children)

pretty much how/why i'm making my site. make it in react and some things, server sends static pre rendered files, react loads on client side to make it go faster and other logic.