diff options
| author | Joe Carstairs <jcarstairs@scottlogic.com> | 2023-08-15 20:01:09 +0100 |
|---|---|---|
| committer | Joe Carstairs <jcarstairs@scottlogic.com> | 2023-08-15 20:01:09 +0100 |
| commit | 8a52236c491c4b32e8b4547e057ae250c198c507 (patch) | |
| tree | e2a4135305226f538fb287cf28a025d65686a82c /src/lib | |
| parent | eccc3d967187beb4d7c736c4799601519abf0a8e (diff) | |
Fixes .env path
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/env.ts | 2 |
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; |
