Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在处理的项目在子文件夹中有多个节点模块,现在我如何构建它似乎 dotenv 无法.env在根目录中找到该文件。这使得process.env变量undefined。有什么方法可以让所有目录都可以访问环境变量?
.env
process.env
undefined
我尝试将文件放在require('dotenv').config();文件的顶部,甚至尝试添加一个脚本以在根目录下的 jest.config 中运行它。所有结果在undefined.
require('dotenv').config();
我不是很清楚你想做什么。但是您可以使用dotenv#path选项来指定.env要加载的文件的路径。