From 39b149cefe71e7efa863a91db3feb66452e25251 Mon Sep 17 00:00:00 2001 From: Andrew Kushnir Date: Thu, 12 Oct 2023 14:12:40 -0700 Subject: [PATCH] docs: remove developer preview note from hydration feature in docs (#52197) PR Close #52197 --- aio/content/guide/hydration.md | 6 ------ aio/content/guide/universal.md | 6 ------ 2 files changed, 12 deletions(-) diff --git a/aio/content/guide/hydration.md b/aio/content/guide/hydration.md index 307e8db6b28..b80323f74ab 100644 --- a/aio/content/guide/hydration.md +++ b/aio/content/guide/hydration.md @@ -1,11 +1,5 @@ # Hydration -
- -The hydration feature is available for [developer preview](/guide/releases#developer-preview). It's ready for you to try, but it might change before it is stable. - -
- ## What is hydration Hydration is the process that restores the server side rendered application on the client. This includes things like reusing the server rendered DOM structures, persisting the application state, transferring application data that was retrieved already by the server, and other processes. diff --git a/aio/content/guide/universal.md b/aio/content/guide/universal.md index cb615a996fe..daf64a1e179 100644 --- a/aio/content/guide/universal.md +++ b/aio/content/guide/universal.md @@ -122,12 +122,6 @@ If your Angular application doesn't follow this practice, you can quickly and ea Hydration is the process that restores the server side rendered application on the client. This includes things like reusing the server rendered DOM structures, persisting the application state, transferring application data that was retrieved already by the server, and other processes. Learn more about hydration in [this guide](guide/hydration). -
- -The hydration feature is available for [developer preview](/guide/releases#developer-preview). It's ready for you to try, but it might change before it is stable. - -
- You can enable hydration by updating the `app.config.ts` file. Import the `provideClientHydration` function from `@angular/platform-browser` and add the function call to the `providers` section as shown below.