From 9144680ffb556ad558e1f0dda62b4878857f78e8 Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:32:59 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20Load=20`dotenv`=20at=20To?= =?UTF-8?q?p=20of=20Call=20Stack=20(#1512)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/server/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/api/server/index.js b/api/server/index.js index c3586e481..3c6429e47 100644 --- a/api/server/index.js +++ b/api/server/index.js @@ -1,3 +1,4 @@ +require('dotenv').config(); const path = require('path'); require('module-alias')({ base: path.resolve(__dirname, '..') }); const cors = require('cors');