From 0a3e28e7706050033161da7514cc88d8c624d400 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 2 Jan 2026 15:15:06 +0100 Subject: [PATCH] Update index.js --- nodejs/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nodejs/index.js b/nodejs/index.js index 83f6ee1..0bed9c7 100644 --- a/nodejs/index.js +++ b/nodejs/index.js @@ -1,3 +1,5 @@ +require('dotenv').config() + const fastify = require('fastify')({ logger: {level: "error"}, trustProxy: true }) const PORT = process.env.PORT || 3000 fastify.register(require('@fastify/cors'))