From 060812a11a7fc966bd7bd59c0807b7306950dbde Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Fri, 26 Aug 2022 03:59:57 -0500 Subject: [PATCH] Revert "Adds note about custom server requirements" (#39956) Reverts vercel/next.js#39931 Let's instead add this to the custom server documentation, in a section on "Using Middleware". Since such a low percentage of folks eject out of the default server, this shouldn't be so high up on the Middleware docs page. --- docs/advanced-features/middleware.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/advanced-features/middleware.md b/docs/advanced-features/middleware.md index 2dbd2f290eb7161..74454c5470b5381 100644 --- a/docs/advanced-features/middleware.md +++ b/docs/advanced-features/middleware.md @@ -21,8 +21,6 @@ Middleware runs _before_ cached content, so you can personalize static files and > **Note:** If you were using Middleware prior to `12.2`, please see the [upgrade guide](https://nextjs.org/docs/messages/middleware-upgrade-guide). -> **Note:** If you are using a [custom server](https://nextjs.org/docs/advanced-features/custom-server) you must provide `hostname` and `port` when calling `next` i.e `next({ hostname: 'localhost', port: 3000 })`. - ## Using Middleware To begin using Middleware, follow the steps below: