From e6ee42204dd698d29cd26c8000c11ca0854b42a5 Mon Sep 17 00:00:00 2001 From: wajeht <58354193+wajeht@users.noreply.github.com> Date: Tue, 13 Aug 2024 22:49:28 -0500 Subject: [PATCH] style(config): Update code formatting in config.ts --- src/config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config.ts b/src/config.ts index decdbaa..65f7474 100644 --- a/src/config.ts +++ b/src/config.ts @@ -4,6 +4,9 @@ import { Env } from './types'; if (process.env.APP_ENV === 'production') { dotenv.config({ path: path.resolve(path.join(process.cwd(), '..', '..', '..', '.env')) }); + console.log('xxxxxxxxxxxxxx'); + console.log(path.resolve(path.join(process.cwd(), '..', '..', '..', '.env'))); + console.log('xxxxxxxxxxxxxx'); } else { dotenv.config({ path: path.resolve(path.join(process.cwd(), '.env')) }); }