Skip to content

Commit

Permalink
fix(nextjs): Stop ts errors for non-static nextjs typed routes in aut…
Browse files Browse the repository at this point in the history
…hMiddleware
  • Loading branch information
desiprisg committed Oct 23, 2023
1 parent 52f8553 commit 9a1f767
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/curly-ties-mix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clerk/nextjs': patch
---

Fix an issue where only static routes would be allowed by `publicRoutes` prop from `authMiddleware`.
4 changes: 3 additions & 1 deletion packages/nextjs/src/server/authMiddleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ type ExcludeRootPath<T> = T extends '/' ? never : T;
type RouteMatcherWithNextTypedRoutes =
| WithPathPatternWildcard<ExcludeRootPath<NextTypedRoute>>
| NextTypedRoute
| (string & object);
// This is necessary to allow all string, using something other than `{}` here WILL break types!
// eslint-disable-next-line @typescript-eslint/ban-types
| (string & {});

const INFINITE_REDIRECTION_LOOP_COOKIE = '__clerk_redirection_loop';

Expand Down

0 comments on commit 9a1f767

Please sign in to comment.