-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
36 lines (27 loc) · 865 Bytes
/
middleware.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// import { clerkMiddleware, createRouteMatcher } from '@clerk/nextjs/server';
// const protectedRoute = createRouteMatcher([
// '/',
// '/upcoming',
// '/meeting(.*)',
// '/previous',
// '/recordings',
// '/personal-room',
// ]);
// export default clerkMiddleware( async (auth, req) => {
// if (protectedRoute(req)) await auth.protect()
// });
// export const config = {
// matcher: ['/((?!.+\\.[\\w]+$|_next).*)', '/', '/(api|trpc)(.*)'],
// };
import { clerkMiddleware, createRouteMatcher } from '@clerk/nextjs/server';
const isIgnoredRoute = createRouteMatcher([
'/sign-in',
'/sign-up'
]);
// export default clerkMiddleware()
export default clerkMiddleware(async (auth, req) => {
if (!isIgnoredRoute(req)) await auth.protect()
})
export const config = {
matcher: ['/((?!.+\\.[\\w]+$|_next).*)', '/', '/(api|trpc)(.*)'],
};