Replies: 1 comment
-
You do not need to use the As for your issue, it might help to see some more code. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I’m encountering an issue with loading environment variables using the dotenv package in Node.js 20.17. Despite following the typical setup for using dotenv, the environment variables defined in my .env file are not being loaded into process.env.
import dotenv from 'dotenv'; // Load environment variables from .env file dotenv.config({ path: '.env' });
Beta Was this translation helpful? Give feedback.
All reactions