From 0ca17a44ecbb134e686fbf4cb0f3097152b43c22 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 18 Sep 2025 14:08:48 +0200 Subject: [PATCH] Update hello.ts --- nextjs/ssr/pages/api/hello.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextjs/ssr/pages/api/hello.ts b/nextjs/ssr/pages/api/hello.ts index f4785d0..47a28e4 100644 --- a/nextjs/ssr/pages/api/hello.ts +++ b/nextjs/ssr/pages/api/hello.ts @@ -9,5 +9,5 @@ export default function handler( res: NextApiResponse ) { console.log(process.env.OPENAPI) - res.status(200).json({ message: 'Hello from Next.js!' }) + res.status(200).json({ message: "Hello from Next.js! Your key is " + process.env.OPENAPI }) }