diff options
author | Idan Amit <ia096e@intl.att.com> | 2018-02-01 14:01:11 +0200 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2018-02-04 09:31:31 +0000 |
commit | b676b6dcada5549348003191c09142e92de4d352 (patch) | |
tree | c23259067ed4d46005aab638846b06f87e3f0da6 /catalog-ui/webpack.server.js | |
parent | b43e8ebd9f3e7436a51c2a6b9fe71f254d92b833 (diff) |
Designer alignment
Little fixes from previous code
Change-Id: I4adcd64ae1323963cec248cabb790a4375ae51df
Issue-ID: SDC-972
Signed-off-by: Idan Amit <ia096e@intl.att.com>
Diffstat (limited to 'catalog-ui/webpack.server.js')
-rw-r--r-- | catalog-ui/webpack.server.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/catalog-ui/webpack.server.js b/catalog-ui/webpack.server.js index d9baf470d3..e53d79f533 100644 --- a/catalog-ui/webpack.server.js +++ b/catalog-ui/webpack.server.js @@ -39,14 +39,14 @@ module.exports = function(env) { // Redirect all '/sdc1/feProxy/rest' to feHost middlewares.push( proxy(['/sdc1/feProxy/rest'],{ - target: 'http://192.168.50.5:' + fePort, + target: 'http://localhost:' + fePort, changeOrigin: true, secure: false })); middlewares.push( proxy(['/sdc1/rest'],{ - target: 'http://192.168.50.5:' + fePort, + target: 'http://localhost:' + fePort, changeOrigin: true, secure: false })); @@ -54,7 +54,7 @@ module.exports = function(env) { // Redirect dcae urls to feHost middlewares.push( proxy(['/dcae','/sdc1/feProxy/dcae-api'],{ - target: 'http://192.168.50.5:' + fePort, + target: 'http://localhost:' + fePort, changeOrigin: true, secure: false, onProxyRes: (proxyRes, req, res) => { @@ -68,7 +68,7 @@ module.exports = function(env) { // Redirect onboarding urls to feHost middlewares.push( proxy(['/onboarding','/sdc1/feProxy/onboarding-api'],{ - target: 'http://192.168.50.5:' + fePort, + target: 'http://localhost:' + fePort, changeOrigin: true, secure: false, onProxyRes: (proxyRes, req, res) => { |