From 25022ab387b01ce904af05ad072a365e39f3ea6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B5=D0=BD=D0=B8=D1=81=20=D0=9A=D0=B0=D1=82=D0=B0?= =?UTF-8?q?=D0=B5=D0=B2?= Date: Fri, 5 Apr 2024 20:00:57 +0000 Subject: [PATCH] Fix/api host --- src/routes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes.ts b/src/routes.ts index d94e926..92eeb1c 100755 --- a/src/routes.ts +++ b/src/routes.ts @@ -5,7 +5,7 @@ const isProduction = import.meta.env.MODE === "production"; const host = ""; export const apiHost = "https://api-web.aura.wit.life"; const dApiHost = isProduction - ? "https://d.api.witapps.us" + ? "https://api.aura.witapps.us" : "https://dev.api.witapps.us"; // const dApiHost = "https://d.api.witapps.us"; const siteHost = "https://aura.wit.life";