From 9c1c670ccbe25135887f7357e59870ca40199569 Mon Sep 17 00:00:00 2001 From: Nikolai Petukhov Date: Sat, 12 Oct 2024 12:25:38 +0300 Subject: [PATCH] small fix with routes --- 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 040f11a..15ec334 100644 --- a/src/backend/api.js +++ b/src/backend/api.js @@ -4,7 +4,7 @@ import {getConfigValue} from "@brojs/cli"; const LOCAL = "http://localhost:8099"; const DEV = "https://dev.bro-js.ru"; -export const BASE_API_URL = LOCAL + getConfigValue("enterfront.api"); +export const BASE_API_URL = DEV + getConfigValue("enterfront.api"); // fetch(`${BASE_API_URL}/books/list`)