diff --git a/docs/02-app/02-api-reference/02-file-conventions/instrumentation.mdx b/docs/02-app/02-api-reference/02-file-conventions/instrumentation.mdx
index 6f4eb854e4b03..1714b40652fdb 100644
--- a/docs/02-app/02-api-reference/02-file-conventions/instrumentation.mdx
+++ b/docs/02-app/02-api-reference/02-file-conventions/instrumentation.mdx
@@ -7,20 +7,35 @@ related:
- app/building-your-application/optimizing/instrumentation
---
-The `instrumentation.js|ts` file is used to integrate monitoring and logging tools into your application. This allows you to track the performance and behavior of your application, and to debug issues in production.
+The `instrumentation.js|ts` file is used to integrate observability tools into your application, allowing you to track the performance and behavior, and to debug issues in production.
To use it, place the file in the **root** of your application or inside a [`src` folder](/docs/app/building-your-application/configuring/src-directory) if using one.
-## Config Option
+## Enabling Instrumentation
-Instrumentation is currently an experimental feature, to use the `instrumentation` file, you must explicitly opt-in by defining [`experimental.instrumentationHook = true;`](/docs/app/api-reference/next-config-js/instrumentationHook) in your `next.config.js`:
+Instrumentation is currently an experimental feature, to use the `instrumentation.js` file, you must explicitly opt-in by defining [`experimental.instrumentationHook = true;`](/docs/app/api-reference/next-config-js/instrumentationHook) in your `next.config.js`:
-```js filename="next.config.js"
-module.exports = {
+```ts filename="next.config.ts" switcher
+import type { NextConfig } from 'next'
+
+const nextConfig: NextConfig = {
experimental: {
instrumentationHook: true,
},
}
+
+export default nextConfig
+```
+
+```js filename="next.config.js" switcher
+/** @type {import('next').NextConfig} */
+const nextConfig = {
+ experimental: {
+ instrumentationHook: true,
+ },
+}
+
+module.exports = nextConfig
```
## Exports
@@ -45,9 +60,82 @@ export function register() {
}
```
+### `onRequestError` (optional)
+
+You can optionally export an `onRequestError` function to track and send **server** errors to an observability tool.
+
+```ts filename="instrumentation.ts" switcher
+import { type Instrumentation } from 'next'
+
+export const onRequestError: Instrumentation.onRequestError = (
+ err,
+ request,
+ context
+) => {
+ fetch('https://.../write-log', {
+ method: 'POST',
+ body: JSON.stringify({
+ message: err.message,
+ request,
+ context,
+ }),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+}
+```
+
+```js filename="instrumentation.js" switcher
+export function onRequestError(err, request, context) {
+ fetch('https://.../write-log', {
+ method: 'POST',
+ body: JSON.stringify({
+ message: err.message,
+ request,
+ context,
+ }),
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ })
+}
+```
+
+#### Parameters
+
+The function accepts three parameters: `error`, `request`, and `context`.
+
+```ts filename="Types"
+export function onRequestError(
+ error: { digest: string } & Error,
+ request: {
+ url: string // full URL
+ method: string // request method. e.g. GET, POST, etc
+ headers: { [key: string]: string }
+ },
+ context: {
+ routerKind: 'Pages Router' | 'App Router' // the router type
+ routePath: string // the route file path, e.g. /app/blog/[dynamic]
+ routeType: 'render' | 'route' | 'action' | 'middleware' // the context in which the error occurred
+ renderSource:
+ | 'react-server-components'
+ | 'react-server-components-payload'
+ | 'server-rendering'
+ revalidateReason: 'on-demand' | 'stale' | undefined // undefined is a normal request without revalidation
+ renderType: 'dynamic' | 'dynamic-resume' // 'dynamic-resume' for PPR
+ }
+)
+```
+
+- `error`: The caught error itself (type is always `Error`), and a `digest` property which is the unique ID of the error.
+- `request`: Read-only request information associated with the error.
+- `context`: The context in which the error occurred. This can be the type of router (App or Pages Router), and/or (Server Components (`'render'`), Route Handlers (`'route'`), Server Actions (`'action'`), or Middleware (`'middleware'`)).
+
## Version History
| Version | Changes |
| --------- | ------------------------------------------------------- |
+| `v15.0.0` | `onRequestError` introduced |
| `v14.0.4` | Turbopack support for `instrumentation` |
| `v13.2.0` | `instrumentation` introduced as an experimental feature |
diff --git a/docs/02-app/02-api-reference/04-functions/fetch.mdx b/docs/02-app/02-api-reference/04-functions/fetch.mdx
index 87b801733bc52..fb9a9859c4cc9 100644
--- a/docs/02-app/02-api-reference/04-functions/fetch.mdx
+++ b/docs/02-app/02-api-reference/04-functions/fetch.mdx
@@ -97,6 +97,16 @@ fetch(`https://...`, { next: { tags: ['collection'] } })
Set the cache tags of a resource. Data can then be revalidated on-demand using [`revalidateTag`](https://nextjs.org/docs/app/api-reference/functions/revalidateTag). The max length for a custom tag is 256 characters and the max tag items is 64.
+## Troubleshooting
+
+## Fetch `cache: 'no-store'` not showing fresh data in development
+
+Next.js caches `fetch` responses in Server Components across Hot Module Replacement (HMR) in local development for faster responses and to reduce costs for billed API calls.
+
+By default, the [HMR cache](docs/app/api-reference/next-config-js/servercomponentshmrcache) applies to all fetch requests, including those with the `cache: 'no-store'` option. This means uncached requests will not show fresh data between HMR refreshes. However, the cache will be cleared on navigation or full-page reloads.
+
+See the [`serverComponentsHmrCache`](docs/app/api-reference/next-config-js/servercomponentshmrcache) docs for more information.
+
## Version History
| Version | Changes |
diff --git a/docs/02-app/02-api-reference/05-next-config-js/devIndicators.mdx b/docs/02-app/02-api-reference/05-next-config-js/devIndicators.mdx
index 0267ef7abb4ed..3ce45323b6f2b 100644
--- a/docs/02-app/02-api-reference/05-next-config-js/devIndicators.mdx
+++ b/docs/02-app/02-api-reference/05-next-config-js/devIndicators.mdx
@@ -7,6 +7,52 @@ description: Optimized pages include an indicator to let you know if it's being
+`devIndicators` allows you to configure the on-screen indicators that give context about the current route you're viewing during development.
+
+```ts filename="Types"
+ devIndicators: {
+ appIsrStatus?: boolean, // defaults to true
+ buildActivity?: boolean, // defaults to true
+ buildActivityPosition?: 'bottom-right'
+ | 'bottom-left'
+ | 'top-right'
+ | 'top-left', // defaults to 'bottom-right'
+ },
+```
+
+## `appIsrStatus` (Static Indicator)
+
+Next.js displays a static indicator in the bottom corner of the screen that signals if a route will be prerendered at build time. This makes it easier to understand whether a route is static or dynamic, and for you to identify if a route [opts out of static rendering](#static-route-not-showing-the-indicator).
+
+{/* TODO: Add screenshot - waiting for design */}
+
+You can disable the indicator by closing it, or using the config option `next.config.js`:
+
+```ts filename="next.config.ts" switcher
+import type { NextConfig } from 'next'
+
+const nextConfig: NextConfig = {
+ devIndicators: {
+ appIsrStatus: false,
+ },
+}
+
+export default nextConfig
+```
+
+```js filename="next.config.js" switcher
+/** @type {import('next').NextConfig} */
+const nextConfig = {
+ devIndicators: {
+ appIsrStatus: false,
+ },
+}
+
+module.exports = nextConfig
+```
+
+## `buildActivity` (Compilation Indicator)
+
When you edit your code, and Next.js is compiling the application, a compilation indicator appears in the bottom right corner of the page.
> **Good to know**: This indicator is only present in development mode and will not appear when building and running the app in production mode.
@@ -21,7 +67,7 @@ module.exports = {
}
```
-In some cases this indicator might not be useful for you. To remove it, open `next.config.js` and disable the `buildActivity` config in `devIndicators` object:
+In some cases, this indicator might not be useful for you. To remove it, open `next.config.js` and disable the `buildActivity` config in `devIndicators` object:
```js filename="next.config.js"
module.exports = {
@@ -31,16 +77,30 @@ module.exports = {
}
```
-There is also an indicator to show whether a page will be prerendered during a build in dev. It can be hidden per-page by clicking although if you never want it to show it can be disabled:
+## Troubleshooting
-```js filename="next.config.js"
-module.exports = {
- devIndicators: {
- appIsrStatus: false,
- },
-}
+### Static route not showing the indicator
+
+If you expect a route to be static and the indicator is enabled but not showing, it's likely the route has opted out of static rendering.
+
+You can confirm if a route is [static](/docs/app/building-your-application/rendering/server-components#static-rendering-default) or [dynamic](/docs/app/building-your-application/rendering/server-components#dynamic-rendering) by building your application using `next build --debug`, and checking the output in your terminal. Static (or prerendered) routes will display a `○` symbol, whereas dynamic routes will display a `ƒ` symbol. For example:
+
+```bash filename="Build Output"
+Route (app) Size First Load JS
+┌ ○ /_not-found 0 B 0 kB
+└ ƒ /products/[id] 0 B 0 kB
+
+○ (Static) prerendered as static content
+ƒ (Dynamic) server-rendered on demand
```
+There are two reasons a route might opt out of static rendering:
+
+- The presence of [Dynamic APIs](/docs/app/building-your-application/rendering/server-components#dynamic-functions) which rely on runtime information.
+- An [uncached data request](/docs/app/building-your-application/data-fetching/fetching#fetch-api).
+
+Check your route for any of these conditions, and if you are not able to statically render the route, then consider using [`loading.js`](/docs/app/api-reference/file-conventions/loading) or [``](https://react.dev/reference/react/Suspense) to leverage [streaming](/docs/app/building-your-application/routing/loading-ui-and-streaming#what-is-streaming).
+
diff --git a/docs/02-app/02-api-reference/05-next-config-js/serverComponentsHmrCache.mdx b/docs/02-app/02-api-reference/05-next-config-js/serverComponentsHmrCache.mdx
new file mode 100644
index 0000000000000..3abfb7d37238b
--- /dev/null
+++ b/docs/02-app/02-api-reference/05-next-config-js/serverComponentsHmrCache.mdx
@@ -0,0 +1,35 @@
+---
+title: severComponentsHmrCache
+description: Configure whether fetch responses in Server Components are cached across HMR refresh requests.
+---
+
+The experimental `serverComponentsHmrCache` option allows you to cache `fetch` responses in Server Components across Hot Module Replacement (HMR) refreshes in local development. This results in faster responses and reduced costs for billed API calls.
+
+By default, the HMR cache applies to all `fetch` requests, including those with the `cache: 'no-store'` option. This means uncached requests will not show fresh data between HMR refreshes. However, the cache will be cleared on navigation or full-page reloads.
+
+You can disable the HMR cache by setting `serverComponentsHmrCache` to `false` in your `next.config.js` file:
+
+```ts filename="next.config.ts" switcher
+import type { NextConfig } from 'next'
+
+const nextConfig: NextConfig = {
+ experimental: {
+ serverComponentsHmrCache: false, // defaults to true
+ },
+}
+
+export default nextConfig
+```
+
+```js filename="next.config.js" switcher
+/** @type {import('next').NextConfig} */
+const nextConfig = {
+ experimental: {
+ serverComponentsHmrCache: false, // defaults to true
+ },
+}
+
+module.exports = nextConfig
+```
+
+> **Good to know:** For better observability, we recommend using the [`logging.fetches`](/docs/app/api-reference/next-config-js/logging) option which logs fetch cache hits and misses in the console during development.
diff --git a/docs/03-pages/02-api-reference/02-file-conventions/instrumentation.mdx b/docs/03-pages/02-api-reference/02-file-conventions/instrumentation.mdx
new file mode 100644
index 0000000000000..89ec7795c8150
--- /dev/null
+++ b/docs/03-pages/02-api-reference/02-file-conventions/instrumentation.mdx
@@ -0,0 +1,7 @@
+---
+title: instrumentation.js
+description: API reference for the instrumentation.js file.
+source: app/api-reference/file-conventions/instrumentation
+---
+
+{/* DO NOT EDIT. The content of this doc is generated from the source above. To edit the content of this page, navigate to the source page in your editor. You can use the `Content` component to add content that is specific to the Pages Router. Any shared content should not be wrapped in a component. */}
diff --git a/docs/03-pages/02-api-reference/02-functions/get-initial-props.mdx b/docs/03-pages/02-api-reference/03-functions/get-initial-props.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/get-initial-props.mdx
rename to docs/03-pages/02-api-reference/03-functions/get-initial-props.mdx
diff --git a/docs/03-pages/02-api-reference/02-functions/get-server-side-props.mdx b/docs/03-pages/02-api-reference/03-functions/get-server-side-props.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/get-server-side-props.mdx
rename to docs/03-pages/02-api-reference/03-functions/get-server-side-props.mdx
diff --git a/docs/03-pages/02-api-reference/02-functions/get-static-paths.mdx b/docs/03-pages/02-api-reference/03-functions/get-static-paths.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/get-static-paths.mdx
rename to docs/03-pages/02-api-reference/03-functions/get-static-paths.mdx
diff --git a/docs/03-pages/02-api-reference/02-functions/get-static-props.mdx b/docs/03-pages/02-api-reference/03-functions/get-static-props.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/get-static-props.mdx
rename to docs/03-pages/02-api-reference/03-functions/get-static-props.mdx
diff --git a/docs/03-pages/02-api-reference/02-functions/index.mdx b/docs/03-pages/02-api-reference/03-functions/index.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/index.mdx
rename to docs/03-pages/02-api-reference/03-functions/index.mdx
diff --git a/docs/03-pages/02-api-reference/02-functions/next-request.mdx b/docs/03-pages/02-api-reference/03-functions/next-request.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/next-request.mdx
rename to docs/03-pages/02-api-reference/03-functions/next-request.mdx
diff --git a/docs/03-pages/02-api-reference/02-functions/next-response.mdx b/docs/03-pages/02-api-reference/03-functions/next-response.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/next-response.mdx
rename to docs/03-pages/02-api-reference/03-functions/next-response.mdx
diff --git a/docs/03-pages/02-api-reference/02-functions/use-amp.mdx b/docs/03-pages/02-api-reference/03-functions/use-amp.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/use-amp.mdx
rename to docs/03-pages/02-api-reference/03-functions/use-amp.mdx
diff --git a/docs/03-pages/02-api-reference/02-functions/use-report-web-vitals.mdx b/docs/03-pages/02-api-reference/03-functions/use-report-web-vitals.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/use-report-web-vitals.mdx
rename to docs/03-pages/02-api-reference/03-functions/use-report-web-vitals.mdx
diff --git a/docs/03-pages/02-api-reference/02-functions/use-router.mdx b/docs/03-pages/02-api-reference/03-functions/use-router.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/use-router.mdx
rename to docs/03-pages/02-api-reference/03-functions/use-router.mdx
diff --git a/docs/03-pages/02-api-reference/02-functions/userAgent.mdx b/docs/03-pages/02-api-reference/03-functions/userAgent.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/02-functions/userAgent.mdx
rename to docs/03-pages/02-api-reference/03-functions/userAgent.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/assetPrefix.mdx b/docs/03-pages/02-api-reference/04-next-config-js/assetPrefix.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/assetPrefix.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/assetPrefix.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/basePath.mdx b/docs/03-pages/02-api-reference/04-next-config-js/basePath.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/basePath.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/basePath.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/bundlePagesRouterDependencies.mdx b/docs/03-pages/02-api-reference/04-next-config-js/bundlePagesRouterDependencies.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/bundlePagesRouterDependencies.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/bundlePagesRouterDependencies.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/compress.mdx b/docs/03-pages/02-api-reference/04-next-config-js/compress.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/compress.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/compress.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/crossOrigin.mdx b/docs/03-pages/02-api-reference/04-next-config-js/crossOrigin.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/crossOrigin.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/crossOrigin.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/devIndicators.mdx b/docs/03-pages/02-api-reference/04-next-config-js/devIndicators.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/devIndicators.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/devIndicators.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/distDir.mdx b/docs/03-pages/02-api-reference/04-next-config-js/distDir.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/distDir.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/distDir.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/env.mdx b/docs/03-pages/02-api-reference/04-next-config-js/env.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/env.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/env.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/eslint.mdx b/docs/03-pages/02-api-reference/04-next-config-js/eslint.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/eslint.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/eslint.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/exportPathMap.mdx b/docs/03-pages/02-api-reference/04-next-config-js/exportPathMap.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/exportPathMap.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/exportPathMap.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/generateBuildId.mdx b/docs/03-pages/02-api-reference/04-next-config-js/generateBuildId.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/generateBuildId.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/generateBuildId.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/generateEtags.mdx b/docs/03-pages/02-api-reference/04-next-config-js/generateEtags.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/generateEtags.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/generateEtags.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/headers.mdx b/docs/03-pages/02-api-reference/04-next-config-js/headers.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/headers.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/headers.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/httpAgentOptions.mdx b/docs/03-pages/02-api-reference/04-next-config-js/httpAgentOptions.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/httpAgentOptions.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/httpAgentOptions.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/images.mdx b/docs/03-pages/02-api-reference/04-next-config-js/images.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/images.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/images.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/index.mdx b/docs/03-pages/02-api-reference/04-next-config-js/index.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/index.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/index.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/instrumentationHook.mdx b/docs/03-pages/02-api-reference/04-next-config-js/instrumentationHook.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/instrumentationHook.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/instrumentationHook.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/onDemandEntries.mdx b/docs/03-pages/02-api-reference/04-next-config-js/onDemandEntries.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/onDemandEntries.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/onDemandEntries.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/optimizePackageImports.mdx b/docs/03-pages/02-api-reference/04-next-config-js/optimizePackageImports.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/optimizePackageImports.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/optimizePackageImports.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/output.mdx b/docs/03-pages/02-api-reference/04-next-config-js/output.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/output.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/output.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/pageExtensions.mdx b/docs/03-pages/02-api-reference/04-next-config-js/pageExtensions.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/pageExtensions.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/pageExtensions.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/poweredByHeader.mdx b/docs/03-pages/02-api-reference/04-next-config-js/poweredByHeader.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/poweredByHeader.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/poweredByHeader.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/productionBrowserSourceMaps.mdx b/docs/03-pages/02-api-reference/04-next-config-js/productionBrowserSourceMaps.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/productionBrowserSourceMaps.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/productionBrowserSourceMaps.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/reactStrictMode.mdx b/docs/03-pages/02-api-reference/04-next-config-js/reactStrictMode.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/reactStrictMode.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/reactStrictMode.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/redirects.mdx b/docs/03-pages/02-api-reference/04-next-config-js/redirects.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/redirects.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/redirects.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/rewrites.mdx b/docs/03-pages/02-api-reference/04-next-config-js/rewrites.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/rewrites.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/rewrites.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/runtime-configuration.mdx b/docs/03-pages/02-api-reference/04-next-config-js/runtime-configuration.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/runtime-configuration.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/runtime-configuration.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/serverExternalPackages.mdx b/docs/03-pages/02-api-reference/04-next-config-js/serverExternalPackages.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/serverExternalPackages.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/serverExternalPackages.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/trailingSlash.mdx b/docs/03-pages/02-api-reference/04-next-config-js/trailingSlash.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/trailingSlash.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/trailingSlash.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/transpilePackages.mdx b/docs/03-pages/02-api-reference/04-next-config-js/transpilePackages.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/transpilePackages.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/transpilePackages.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/turbo.mdx b/docs/03-pages/02-api-reference/04-next-config-js/turbo.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/turbo.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/turbo.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/typescript.mdx b/docs/03-pages/02-api-reference/04-next-config-js/typescript.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/typescript.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/typescript.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/urlImports.mdx b/docs/03-pages/02-api-reference/04-next-config-js/urlImports.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/urlImports.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/urlImports.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/webVitalsAttribution.mdx b/docs/03-pages/02-api-reference/04-next-config-js/webVitalsAttribution.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/webVitalsAttribution.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/webVitalsAttribution.mdx
diff --git a/docs/03-pages/02-api-reference/03-next-config-js/webpack.mdx b/docs/03-pages/02-api-reference/04-next-config-js/webpack.mdx
similarity index 100%
rename from docs/03-pages/02-api-reference/03-next-config-js/webpack.mdx
rename to docs/03-pages/02-api-reference/04-next-config-js/webpack.mdx