Skip to content

Commit

Permalink
Fix regex pattern in middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
pheralb committed Mar 30, 2024
1 parent d2f25d7 commit fe269a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default auth(async (req) => {

export const config = {
matcher: [
"/((?!api/|_next/|images/|docs/|_proxy/|_static|_vercel|.well-known|[\\w-]+\\.\\w+).*)",
"/((?!api/|_next/|images/|docs/|_proxy/|_static|_vercel|[\\w-]+\\.\\w+).*)",
"/s/:slug*",
],
};

0 comments on commit fe269a0

Please sign in to comment.