From 8a52236c491c4b32e8b4547e057ae250c198c507 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 15 Aug 2023 20:01:09 +0100 Subject: Fixes .env path --- src/lib/env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/env.ts') diff --git a/src/lib/env.ts b/src/lib/env.ts index e267f81..8e996f2 100644 --- a/src/lib/env.ts +++ b/src/lib/env.ts @@ -1,7 +1,7 @@ import dotenv from 'dotenv'; // Parsing the env file. -dotenv.config({ path: '../../.env' }); +dotenv.config({ path: './.env' }); type Env = { PAYPAL_LIVE_CLIENT_ID: string; -- cgit v1.2.3