Skip to content

Commit

Permalink
Added comments to middleware-matcher example (#40273)
Browse files Browse the repository at this point in the history
## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm lint`
- [ ] The examples guidelines are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples)


Co-authored-by: Balázs Orbán <18369201+balazsorban44@users.noreply.github.com>
  • Loading branch information
steven-tey and balazsorban44 committed Sep 13, 2022
1 parent 814144a commit 260ea55
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/middleware-matcher/middleware.js
Expand Up @@ -11,5 +11,8 @@ export default function middleware(req) {
}

export const config = {
matcher: ['/public/disclaimer', '/((?!public|static).*)'],
matcher: [
'/disclaimer', // match a single, specific page
'/((?!public|static).*)', // match all paths not starting with 'public' or 'static'
],
}

1 comment on commit 260ea55

@chris-tsongas-vercel
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing /public/disclaimer to /disclaimer broke that part of the example.

Please sign in to comment.