pollo/src/middleware.ts

10 lines
212 B
TypeScript
Raw Normal View History

2023-08-12 17:12:42 -06:00
import { authMiddleware } from "@clerk/nextjs";
export default authMiddleware({
publicRoutes: ["/", "/api/(.*)"],
});
export const config = {
matcher: ["/((?!.*\\..*|_next).*)", "/", "/(api|trpc)(.*)"],
};