Consider using path.join or path.resolve (with __dirname) to construct the .env file path for OS-independent path resolution. ```js dotenv.config({ path: path.resolve(__dirname, '../../.env') }); ``` _Originally posted by @Copilot in https://github.com/Nostromos/dotProject/pull/23#discussion_r2047191004_
Consider using path.join or path.resolve (with __dirname) to construct the .env file path for OS-independent path resolution.
Originally posted by @Copilot in #23 (comment)