1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-03-23 00:29:42 +01:00

Fix typos in frontend questions about SSR (#5837)

This commit is contained in:
Maciek Sitkowski 2024-06-08 12:08:50 +02:00 committed by GitHub
parent 178826683c
commit 2fbec21378
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,6 @@ Server-side rendering (SSR) is a technique in which a web server generates the H
There are several ideal use cases for SSR:
- **Content-rich websites**. For example, new sites, blogs, etc.
- **Content-rich websites**. For example, news sites, blogs, etc.
- **SEO-heavy applications**. When the success of the web app relies on SEO, this approach can greatly improve the performance of the site (and because of that, the SEO performance).
- **Progressive web applications**. When the application needs to render fast to provide a fast and performance user experience, the application can initially be rendered in the server, and then hydrated in the client for subsequent integrations.
- **Progressive web applications**. When the application needs to render fast to provide a fast and performance user experience, the application can initially be rendered on the server, and then hydrated on the client for subsequent integrations.