diff --git a/app.js b/app.js index fb95a4f..9741355 100644 --- a/app.js +++ b/app.js @@ -9,7 +9,7 @@ const server = http.createServer((req, res) => { const key = parsedUrl.searchParams.get("key"); const response = key ? { - message: "added to the response", + message: "New message testing to the serverless function", value: process.env[key] ?? "env not found", } : { message: "key query param not found" };