From dfd6d060f8dca905b9012fbcd9ac26cb8e6634b5 Mon Sep 17 00:00:00 2001 From: Jade Peng Date: Wed, 13 Apr 2022 13:35:31 +0800 Subject: [PATCH] fix: correct hubble backend address (#368) --- hubble-fe/config-overrides.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hubble-fe/config-overrides.js b/hubble-fe/config-overrides.js index 51f77599..7f7fba57 100644 --- a/hubble-fe/config-overrides.js +++ b/hubble-fe/config-overrides.js @@ -9,11 +9,11 @@ const { const addProxy = () => (configFunction) => { configFunction.proxy = { '/about': { - target: 'http://127:0.0.1:8088', + target: 'http://127.0.0.1:8088', changeOrigin: true }, '/api': { - target: 'http://127:0.0.1:8088', + target: 'http://127.0.0.1:8088', changeOrigin: true } };