lobehub/scripts/nextauth-to-betterauth/_internal/env.ts
2026-01-23 23:57:08 +08:00

6 lines
128 B
TypeScript

import { existsSync } from 'node:fs';
import { loadEnvFile } from 'node:process';
if (existsSync('.env')) {
loadEnvFile();
}