From d8cb8903da6ceb7eb7c40a75e1fec6a6befa24a7 Mon Sep 17 00:00:00 2001 From: KevinOomen Date: Tue, 18 Jun 2024 18:10:02 +0200 Subject: [PATCH] fixed routing issue --- src/app/api/auth/[...nextauth]/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/auth/[...nextauth]/route.ts b/src/app/api/auth/[...nextauth]/route.ts index 2d0248a..75e1cf4 100644 --- a/src/app/api/auth/[...nextauth]/route.ts +++ b/src/app/api/auth/[...nextauth]/route.ts @@ -1,4 +1,4 @@ -import { authOptions } from "@/app/api/auth/[...nextauth]/authOptions"; +import { authOptions } from "./authOptions"; import NextAuth from "next-auth"; const handler = NextAuth(authOptions);