From 2f6f0c8b52a1df369f0b9af25017233287fef9db Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Mon, 7 Aug 2023 21:00:13 +0100 Subject: Fixes env path --- api-src/_env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'api-src/_env.ts') 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, -- cgit v1.2.3