diff --git a/src/app/api/auth/[...nextauth]/route.ts b/src/app/api/auth/[...nextauth]/route.ts index de70bff..55dfbc1 100644 --- a/src/app/api/auth/[...nextauth]/route.ts +++ b/src/app/api/auth/[...nextauth]/route.ts @@ -3,6 +3,9 @@ import { authService } from "@/lib/api/example/auth/service"; import NextAuth from "next-auth"; import Credentials from "next-auth/providers/credentials"; + + + function randomToken() { return Math.random().toString(36).substring(2) + Date.now().toString(36); }