diff --git a/config/standalone.dev.webpack.config.js b/config/standalone.dev.webpack.config.js index bdee3591f0..6e165b1a15 100644 --- a/config/standalone.dev.webpack.config.js +++ b/config/standalone.dev.webpack.config.js @@ -8,7 +8,7 @@ module.exports = webpackBase({ API_BASE_PATH: '/api/automation-hub/', // Path on the host where the UI is found. EX: /apps/automation-hub - UI_BASE_PATH: '', + UI_BASE_PATH: '/ui/', // Port that the UI is served over UI_PORT: 8002, diff --git a/config/standalone.prod.webpack.config.js b/config/standalone.prod.webpack.config.js index 03f280d996..094324a512 100644 --- a/config/standalone.prod.webpack.config.js +++ b/config/standalone.prod.webpack.config.js @@ -4,7 +4,7 @@ const webpackBase = require('./webpack.base.config'); module.exports = webpackBase({ API_HOST: '', API_BASE_PATH: '/api/automation-hub/', - UI_BASE_PATH: '', + UI_BASE_PATH: '/ui/', DEPLOYMENT_MODE: 'standalone', UI_USE_HTTPS: false, UI_DEBUG: false,