mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 09:03:36 +00:00
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
/**
|
|
* New Middleware
|
|
*/
|
|
import { clerkMiddleware } from '@clerk/nextjs/server';
|
|
|
|
export default clerkMiddleware();
|
|
|
|
export const config = {
|
|
matcher: ['/((?!.*\\..*|_next).*)', '/', '/(api|trpc)(.*)'],
|
|
};
|