From 3851d9065fd2cdf4b3dbef4a11667e4a224a5113 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Mon, 12 Sep 2022 13:13:09 +0200 Subject: [PATCH] docs(middleware): fix broken link --- docs/api-reference/next/server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-reference/next/server.md b/docs/api-reference/next/server.md index e2f5c8e6fca0..5e83b10835e2 100644 --- a/docs/api-reference/next/server.md +++ b/docs/api-reference/next/server.md @@ -10,7 +10,7 @@ description: Learn about the server-only helpers for Middleware and Edge API Rou The `NextRequest` object is an extension of the native [`Request`](https://developer.mozilla.org/en-US/docs/Web/API/Request) interface, with the following added methods and properties: -- `cookies` - A [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) with cookies from the `Request`. See [Using cookies in Edge Middleware](#using-cookies-in-edge-middleware) +- `cookies` - A [Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) with cookies from the `Request`. See [Using cookies in Middleware](/docs/advanced-features/middleware#using-cookies) - `nextUrl`: Includes an extended, parsed, URL object that gives you access to Next.js specific properties such as `pathname`, `basePath`, `trailingSlash` and `i18n`. Includes the following properties: - `basePath` (`string`) - `buildId` (`string || undefined`)