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.