From 54f6c5c053e641fab56e52b529164b4b3d824200 Mon Sep 17 00:00:00 2001 From: Nikolai Petukhov Date: Sat, 12 Oct 2024 11:39:17 +0300 Subject: [PATCH] config fix --- src/backend/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/api.js b/src/backend/api.js index de5d6be..7aeb26a 100644 --- a/src/backend/api.js +++ b/src/backend/api.js @@ -2,7 +2,7 @@ import {getConfigValue} from "@brojs/cli"; const LOCAL = "http://localhost:8099" + getConfigValue("enterfront.api"); -const DEV = "https://dev.bro-js.ru/ms/epja-2024-01/enterfront"; +const DEV = "https://dev.bro-js.ru" + getConfigValue("enterfront.api"); export const BASE_API_URL = DEV;