summaryrefslogtreecommitdiff
path: root/api-src/_env.ts
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-07 21:00:13 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-07 21:00:13 +0100
commit2f6f0c8b52a1df369f0b9af25017233287fef9db (patch)
tree3e8692226bf254dbdd6c52ad2177eed7b7b6e5d2 /api-src/_env.ts
parent1681f5e3b888c752bace4918914f69fbed7ad181 (diff)
Fixes env path
Diffstat (limited to 'api-src/_env.ts')
-rw-r--r--api-src/_env.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api-src/_env.ts b/api-src/_env.ts
index 69ed902..536f8d7 100644
--- a/api-src/_env.ts
+++ b/api-src/_env.ts
@@ -2,7 +2,7 @@ import path from 'path';
import dotenv from 'dotenv';
// Parsing the env file.
-dotenv.config({ path: path.resolve(__dirname, '../../.env') });
+dotenv.config({ path: path.resolve(__dirname, '../.env') });
type Env = {
PAYPAL_LIVE_CLIENT_ID: string,