fix(cli): resolve .env loading failure for global npm installations

This commit is contained in:
diegosouzapw
2026-05-06 10:50:37 -03:00
parent 1985af8965
commit 22d562782b

View File

@@ -44,6 +44,7 @@ function loadEnvFile() {
}
envPaths.push(join(process.cwd(), ".env"));
envPaths.push(join(ROOT, ".env"));
for (const envPath of envPaths) {
try {