From 5d93753bc304fa65acb11e534126d37ce1d1ebe1 Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Mon, 8 Aug 2022 21:02:14 -0500 Subject: [PATCH] API Routes Request Helpers docs. (#39407) Renames Middleware to Request Helpers to be both more accurate and also less confusing since Middleware is a separate feature of Next.js now. --- docs/api-routes/introduction.md | 11 ++-- ...{api-middlewares.md => request-helpers.md} | 65 ++----------------- docs/api-routes/response-helpers.md | 2 +- docs/manifest.json | 9 ++- errors/invalid-page-config.md | 2 +- 5 files changed, 22 insertions(+), 67 deletions(-) rename docs/api-routes/{api-middlewares.md => request-helpers.md} (70%) diff --git a/docs/api-routes/introduction.md b/docs/api-routes/introduction.md index e771303a108a..7efb489781cb 100644 --- a/docs/api-routes/introduction.md +++ b/docs/api-routes/introduction.md @@ -8,7 +8,6 @@ description: Next.js supports API Routes, which allow you to build your API with Examples