From 1edc0fec183d0421d90bbd017b5f627ca1ae5c38 Mon Sep 17 00:00:00 2001 From: Lucid Date: Sat, 6 Dec 2025 21:23:22 -0500 Subject: [PATCH] test --- src/app/api/graphql/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/api/graphql/route.ts b/src/app/api/graphql/route.ts index a4ab196..72f0c43 100644 --- a/src/app/api/graphql/route.ts +++ b/src/app/api/graphql/route.ts @@ -11,6 +11,7 @@ interface NextContext { const environment = process.env.NODE_ENV || "development"; const isValidApiKey = (apiKey: string): boolean => { + console.log(process.env); const envApiKey = process.env.NEXT_PUBLIC_API_TOKEN; return apiKey === envApiKey;