From 415c5f44ee1d28e12c6e9af01f039a178b52346e Mon Sep 17 00:00:00 2001 From: artbiit Date: Wed, 8 Apr 2026 11:30:10 +0900 Subject: [PATCH] refactor: remove explicit env path configuration to use default dotenv behavior --- src/config/env.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config/env.ts b/src/config/env.ts index 91e6480..2a72202 100644 --- a/src/config/env.ts +++ b/src/config/env.ts @@ -1,8 +1,7 @@ import { config } from 'dotenv'; import { hostname } from 'os'; -const envPath = process.env.BUILD_ENV_PATH; -config({ path: envPath }); +config(); const generateInstanceId = () => { return process.env.INSTANCE_ID || hostname() || `kord-${Math.random().toString(36).substring(2, 7)}`;