From 7e511fd9e9fc06af0acf97221b21898ba49a2282 Mon Sep 17 00:00:00 2001 From: Konrad Pettersson <49250602+KonkenBonken@users.noreply.github.com> Date: Sun, 15 Sep 2024 21:20:40 +0200 Subject: [PATCH] corrected hyperlink to experimental_ppr --- .../route-segment-config.mdx | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/02-app/02-api-reference/02-file-conventions/route-segment-config.mdx b/docs/02-app/02-api-reference/02-file-conventions/route-segment-config.mdx index 59af5855dd34e..9015ceef5a89a 100644 --- a/docs/02-app/02-api-reference/02-file-conventions/route-segment-config.mdx +++ b/docs/02-app/02-api-reference/02-file-conventions/route-segment-config.mdx @@ -5,16 +5,16 @@ description: Learn about how to configure options for Next.js route segments. The Route Segment options allows you to configure the behavior of a [Page](/docs/app/building-your-application/routing/layouts-and-templates), [Layout](/docs/app/building-your-application/routing/layouts-and-templates), or [Route Handler](/docs/app/building-your-application/routing/route-handlers) by directly exporting the following variables: -| Option | Type | Default | -| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -------------------------- | -| [`experimental_ppr`](#dynamic) | `'true' \| 'false'` | -| [`dynamic`](#dynamic) | `'auto' \| 'force-dynamic' \| 'error' \| 'force-static'` | `'auto'` | -| [`dynamicParams`](#dynamicparams) | `boolean` | `true` | -| [`revalidate`](#revalidate) | `false \| 0 \| number` | `false` | -| [`fetchCache`](#fetchcache) | `'auto' \| 'default-cache' \| 'only-cache' \| 'force-cache' \| 'force-no-store' \| 'default-no-store' \| 'only-no-store'` | `'auto'` | -| [`runtime`](#runtime) | `'nodejs' \| 'edge'` | `'nodejs'` | -| [`preferredRegion`](#preferredregion) | `'auto' \| 'global' \| 'home' \| string \| string[]` | `'auto'` | -| [`maxDuration`](#maxduration) | `number` | Set by deployment platform | +| Option | Type | Default | +| --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -------------------------- | +| [`experimental_ppr`](#experimental_ppr) | `'true' \| 'false'` | +| [`dynamic`](#dynamic) | `'auto' \| 'force-dynamic' \| 'error' \| 'force-static'` | `'auto'` | +| [`dynamicParams`](#dynamicparams) | `boolean` | `true` | +| [`revalidate`](#revalidate) | `false \| 0 \| number` | `false` | +| [`fetchCache`](#fetchcache) | `'auto' \| 'default-cache' \| 'only-cache' \| 'force-cache' \| 'force-no-store' \| 'default-no-store' \| 'only-no-store'` | `'auto'` | +| [`runtime`](#runtime) | `'nodejs' \| 'edge'` | `'nodejs'` | +| [`preferredRegion`](#preferredregion) | `'auto' \| 'global' \| 'home' \| string \| string[]` | `'auto'` | +| [`maxDuration`](#maxduration) | `number` | Set by deployment platform | ## Options