From 8d84fc8274fdf99333f0958bd543c80679de657c Mon Sep 17 00:00:00 2001 From: ztimson Date: Mon, 30 Dec 2024 12:19:57 -0500 Subject: [PATCH] Fix momentum config --- src/environments/environment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 3d2ad5b..5c0935e 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -1,6 +1,6 @@ const devMode = location?.port == '5173'; export const environment = { - apiUrl: devMode ? 'http://localhost' : location.host, + apiUrl: devMode ? 'http://localhost' : location.origin, devMode }