docs: fix typo in tutorial

This commit is contained in:
Yahya-Almubarak 2025-11-24 00:14:24 +02:00 committed by Kirill Cherkashin
parent f7f9707508
commit e501b7e445

View file

@ -1,6 +1,6 @@
# Server and hybrid rendering
Angular ships all applications as client-side rendered (CSR) by default. While this approach delivers a initial payload that's lightweight, it introduces trade-offs including slower load times, degraded performance metrics, and higher resource demands since the user's device performs most of the computations. As a result, many applications achieve significant performance improvements by integrating server-side rendering (SSR) into a hybrid rendering strategy.
Angular ships all applications as client-side rendered (CSR) by default. While this approach delivers an initial payload that's lightweight, it introduces trade-offs including slower load times, degraded performance metrics, and higher resource demands since the user's device performs most of the computations. As a result, many applications achieve significant performance improvements by integrating server-side rendering (SSR) into a hybrid rendering strategy.
## What is hybrid rendering?