From e603be7dd8d45a7bb28717ed2c71de3e512485a6 Mon Sep 17 00:00:00 2001 From: samcx Date: Tue, 22 Oct 2024 22:45:54 -0700 Subject: [PATCH 1/2] docs(ppr): add mention that ppr is only available on canary --- .../03-rendering/04-partial-prerendering.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/02-app/01-building-your-application/03-rendering/04-partial-prerendering.mdx b/docs/02-app/01-building-your-application/03-rendering/04-partial-prerendering.mdx index 2e51f677cb32e..36cabdf0939ae 100644 --- a/docs/02-app/01-building-your-application/03-rendering/04-partial-prerendering.mdx +++ b/docs/02-app/01-building-your-application/03-rendering/04-partial-prerendering.mdx @@ -3,12 +3,12 @@ title: Partial Prerendering description: Learn how to combine the benefits of static and dynamic rendering with Partial Prerendering. --- +> **Note:** Partial Prerendering is an **experimental** feature only available on canary and subject to change. It is not ready for production use. + Partial Prerendering (PPR) enables you to combine static and dynamic components together in the same route. During the build, Next.js prerenders as much of the route as possible. If [dynamic](/docs/app/building-your-application/rendering/server-components#dynamic-rendering) code is detected, like reading from the incoming request, you can wrap the relevant component with a [React Suspense](https://react.dev/reference/react/Suspense) boundary. The Suspense boundary fallback will then be included in the prerendered HTML. -> **Note:** Partial Prerendering is an **experimental** feature and subject to change. It is not ready for production use. - Partially Prerendered Product Page showing static nav and product information, and dynamic cart and recommended products Date: Tue, 22 Oct 2024 22:51:21 -0700 Subject: [PATCH 2/2] docs(ppr): add "is" --- .../03-rendering/04-partial-prerendering.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/01-building-your-application/03-rendering/04-partial-prerendering.mdx b/docs/02-app/01-building-your-application/03-rendering/04-partial-prerendering.mdx index 36cabdf0939ae..c843c04d19c5c 100644 --- a/docs/02-app/01-building-your-application/03-rendering/04-partial-prerendering.mdx +++ b/docs/02-app/01-building-your-application/03-rendering/04-partial-prerendering.mdx @@ -3,7 +3,7 @@ title: Partial Prerendering description: Learn how to combine the benefits of static and dynamic rendering with Partial Prerendering. --- -> **Note:** Partial Prerendering is an **experimental** feature only available on canary and subject to change. It is not ready for production use. +> **Note:** Partial Prerendering is an **experimental** feature only available on canary and is subject to change. It is not ready for production use. Partial Prerendering (PPR) enables you to combine static and dynamic components together in the same route.