2023-06-13 17:31:15 -04:00
|
|
|
import { authMiddleware } from '@clerk/nextjs'
|
|
|
|
|
|
2023-06-15 08:37:23 -04:00
|
|
|
// @see https://clerk.dev
|
2023-06-13 17:31:15 -04:00
|
|
|
export default authMiddleware()
|
|
|
|
|
|
|
|
|
|
export const config = {
|
|
|
|
|
matcher: ['/((?!.*\\..*|_next).*)', '/', '/(api|trpc)(.*)']
|
|
|
|
|
}
|