From 29c258e96f259f79de81e7283a3534ec8da5b0c2 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 18 Sep 2025 14:05:44 +0200 Subject: [PATCH] Update hello.ts --- nextjs/ssr/pages/api/hello.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/nextjs/ssr/pages/api/hello.ts b/nextjs/ssr/pages/api/hello.ts index 6ab55af..f4785d0 100644 --- a/nextjs/ssr/pages/api/hello.ts +++ b/nextjs/ssr/pages/api/hello.ts @@ -8,5 +8,6 @@ export default function handler( req: NextApiRequest, res: NextApiResponse ) { + console.log(process.env.OPENAPI) res.status(200).json({ message: 'Hello from Next.js!' }) }