From 240ef5b5c5d1445c8b265d972a1989a147335eef Mon Sep 17 00:00:00 2001 From: RedBeardEth <90423049+RedBeardEth@users.noreply.github.com> Date: Fri, 26 Jan 2024 10:35:20 +1100 Subject: [PATCH] add debug remove next auth api route --- apps/nextjs/src/app/api/auth/[...nextauth]/{route.ts => test.ts} | 0 apps/nextjs/src/app/api/graphql/route.ts | 1 + 2 files changed, 1 insertion(+) rename apps/nextjs/src/app/api/auth/[...nextauth]/{route.ts => test.ts} (100%) diff --git a/apps/nextjs/src/app/api/auth/[...nextauth]/route.ts b/apps/nextjs/src/app/api/auth/[...nextauth]/test.ts similarity index 100% rename from apps/nextjs/src/app/api/auth/[...nextauth]/route.ts rename to apps/nextjs/src/app/api/auth/[...nextauth]/test.ts diff --git a/apps/nextjs/src/app/api/graphql/route.ts b/apps/nextjs/src/app/api/graphql/route.ts index 2379a308..cf3cca2f 100644 --- a/apps/nextjs/src/app/api/graphql/route.ts +++ b/apps/nextjs/src/app/api/graphql/route.ts @@ -13,6 +13,7 @@ const { handleRequest } = createYoga({ origin: "*", }, maskedErrors: false, + logging: "debug", }); export { handleRequest as GET, handleRequest as POST };