summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Carstairs <jcarstairs@scottlogic.com>2023-08-15 20:01:09 +0100
committerJoe Carstairs <jcarstairs@scottlogic.com>2023-08-15 20:01:09 +0100
commit8a52236c491c4b32e8b4547e057ae250c198c507 (patch)
treee2a4135305226f538fb287cf28a025d65686a82c
parenteccc3d967187beb4d7c736c4799601519abf0a8e (diff)
Fixes .env path
-rw-r--r--src/lib/env.ts2
1 files changed, 1 insertions, 1 deletions
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;