mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-03 02:11:20 +00:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { authMiddleware } from "@clerk/nextjs";
|
|
|
|
export default authMiddleware({
|
|
publicRoutes: ["/"],
|
|
});
|
|
|
|
export const config = {
|
|
matcher: ["/((?!.*\\..*|_next).*)", "/", "/(api|trpc)(.*)"],
|
|
};
|