Files
arbpulse/src/load-env.ts
T

10 lines
194 B
TypeScript
Raw Normal View History

import { existsSync } from "node:fs";
import { loadEnvFile } from "node:process";
for (const file of [".env.local", ".env"]) {
if (existsSync(file)) {
loadEnvFile(file);
break;
}
}