Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions adev-es/src/content/guide/performance/overview.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<docs-decorative-header title="Server-side & hybrid rendering" imgSrc="adev/src/assets/images/overview.svg"> <!-- markdownlint-disable-line -->
Learn about different ways you can optimize the performance of your application with different rendering strategies.
</docs-decorative-header>

One of the top priorities of any developer is ensuring that their application is as performant as possible. These guides are here to help you follow best practices for building performant applications by taking advantage of different rendering strategies.

| Guides Types | Description |
| :---------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [Server and hybrid rendering](/guide/ssr) | Learn how to leverage rendering pages on the server to improve load times. |
| [Hydration](/guide/hydration) | A process to improve application performance by restoring its state after server-side rendering and reusing existing DOM structure as much as possible. |
| [Incremental Hydration](/guide/incremental-hydration) | Incremental hydration is an advanced type of hydration that can leave sections of your application dehydrated and incrementally trigger hydration of those sections as they are needed. |
16 changes: 8 additions & 8 deletions adev-es/src/content/guide/performance/overview.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<docs-decorative-header title="Server-side & hybrid rendering" imgSrc="adev/src/assets/images/overview.svg"> <!-- markdownlint-disable-line -->
Learn about different ways you can optimize the performance of your application with different rendering strategies.
<docs-decorative-header title="Renderización en el servidor y renderización híbrida" imgSrc="adev/src/assets/images/overview.svg"> <!-- markdownlint-disable-line -->
Aprende sobre las diferentes formas en que puedes optimizar el rendimiento de tu aplicación con distintas estrategias de renderización.
</docs-decorative-header>

One of the top priorities of any developer is ensuring that their application is as performant as possible. These guides are here to help you follow best practices for building performant applications by taking advantage of different rendering strategies.
Una de las principales prioridades de cualquier desarrollador es asegurarse de que su aplicación sea lo más eficiente posible. Estas guías están aquí para ayudarte a seguir las mejores prácticas para construir aplicaciones de alto rendimiento aprovechando diferentes estrategias de renderización.

| Guides Types | Description |
| :---------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [Server and hybrid rendering](/guide/ssr) | Learn how to leverage rendering pages on the server to improve load times. |
| [Hydration](/guide/hydration) | A process to improve application performance by restoring its state after server-side rendering and reusing existing DOM structure as much as possible. |
| [Incremental Hydration](/guide/incremental-hydration) | Incremental hydration is an advanced type of hydration that can leave sections of your application dehydrated and incrementally trigger hydration of those sections as they are needed. |
| Tipos de guías | Descripción |
| :---------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [Renderización en el servidor y renderización híbrida](/guide/ssr) | Aprende cómo aprovechar la renderización de páginas en el servidor para mejorar los tiempos de carga. |
| [Hidratación](/guide/hydration) | Un proceso para mejorar el rendimiento de la aplicación restaurando su estado después de la renderización del lado del servidor y reutilizando la estructura del DOM existente en la medida de lo posible. |
| [Hidratación Incremental](/guide/incremental-hydration) | La hidratación incremental es un tipo avanzado de hidratación que puede dejar secciones de tu aplicación deshidratadas y activar incrementalmente la hidratación de esas secciones a medida que se necesitan. |
Loading