mirror of
https://github.com/lobehub/lobehub
synced 2026-04-21 17:47:27 +00:00
6 lines
128 B
TypeScript
6 lines
128 B
TypeScript
import { existsSync } from 'node:fs';
|
|
import { loadEnvFile } from 'node:process';
|
|
|
|
if (existsSync('.env')) {
|
|
loadEnvFile();
|
|
}
|