Core Features
Data Fetching
SSR (server-side rendering), is used to generate HTML on the server the moment a user makes a request.By generating a response on demand, you are ensuring that the content being displayed is always up to date. This is most useful for websites with dynamic data that changes very often. However, SSR can also lead to increased load times, now that the server always has to produce a new response at every request. Additionally, the server cannot send a response until all the data is ready to be sent to the client, which can impact your users' experience sine they'll be stuck on the current page until the server is ready. With that being said, SSR still provides many benefits.
Some of these benefits include:
Serving personnalized content.
Protecting routes with authorization.
Displaying dynamic content that is always up to date.
Since the dynamic pages here use SSR, you will experience a three second delay before being able to switch from one page to the next, due to the server having to generate content on each request.