Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Sep 13, 2022
1 parent 6026358 commit 9faa377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/middleware-matcher/middleware.js
Expand Up @@ -13,6 +13,6 @@ export default function middleware(req) {
export const config = {
matcher: [
'/disclaimer', // match a single, specific page
'/((?!public|static).*)' // match all paths not starting with 'public' or 'static'
'/((?!public|static).*)', // match all paths not starting with 'public' or 'static'
],
}

0 comments on commit 9faa377

Please sign in to comment.