first commit

This commit is contained in:
LeNei
2023-11-25 16:18:54 +01:00
commit 9c5d791d10
31 changed files with 3840 additions and 0 deletions

10
middleware.ts Normal file
View File

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