Skip to content

Commit

Permalink
fix: correct hubble backend address (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
jadepeng authored Apr 13, 2022
1 parent 6efffd1 commit dfd6d06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hubble-fe/config-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
};
Expand Down

0 comments on commit dfd6d06

Please sign in to comment.