🐛 fix: Load dotenv at Top of Call Stack (#1512)

This commit is contained in:
Danny Avila 2024-01-07 14:32:59 -05:00 committed by GitHub
parent bebfffb2d9
commit 9144680ffb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,4 @@
require('dotenv').config();
const path = require('path');
require('module-alias')({ base: path.resolve(__dirname, '..') });
const cors = require('cors');