rsnext/errors/nested-middleware.md
Lee Robinson f3c1bcfc2f
Change Middleware error guide from .js to .ts. (#37858)
Feedback:

> Hello :D may it be that the types should be imported in a TS file, so I think the extension of the file should be updated here :) /middleware.js -> /middleware.ts (or no types)
2022-06-20 21:56:19 +00:00

30 lines
1.3 KiB
Markdown

# Nested Middleware
#### Why This Error Occurred
You are defining a Middleware file in a location different from `<root>/middleware`, which is not allowed.
While in beta, a Middleware file under specific pages would _only_ be executed when pages below its declaration were matched, allowing nesting Middleware files. Based on customer feedback, we have replaced this API with a single root Middleware.
#### Possible Ways to Fix It
Declare your Middleware in the root folder and use `NextRequest` parsed URL to define which path the Middleware should be executed for.
For example, a Middleware at `pages/about/_middleware.ts` can move the logic to `<root>/middleware.ts` in the root of your repository. Then, a conditional statement can be used to only run the Middleware when it matches the `about/*` path:
```typescript
// <root>/middleware.ts
import type { NextRequest } from 'next/server'
export function middleware(request: NextRequest) {
if (request.nextUrl.pathname.startsWith('/about')) {
// This logic is only applied to /about
}
if (request.nextUrl.pathname.startsWith('/dashboard')) {
// This logic is only applied to /dashboard
}
}
```
If you have more than one Middleware, you should combine them into a single file and model their execution depending on the incoming request.