Files
clerk-docker-error/middleware.ts
2023-11-25 16:18:54 +01:00

11 lines
195 B
TypeScript

import { authMiddleware } from "@clerk/nextjs";
export default authMiddleware({
publicRoutes: ["/"],
debug: true,
});
export const config = {
matcher: ["/((?!.*\\..*|_next).*)", "/"],
};