From 2ba85ba8e1f44638fed28ec40891a076daba9d51 Mon Sep 17 00:00:00 2001 From: Andrey Meshkov Date: Thu, 22 Oct 2020 18:29:52 +0300 Subject: [PATCH] - (ui): API requests don't work when reverse proxy is in use Closes: #2197 --- client/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/constants.js b/client/constants.js index c7c9a0e1..f05c2d6e 100644 --- a/client/constants.js +++ b/client/constants.js @@ -3,7 +3,7 @@ const BUILD_ENVS = { prod: 'production', }; -const BASE_URL = '/control'; +const BASE_URL = 'control'; module.exports = { BUILD_ENVS,