diff options
Diffstat (limited to 'sdnr/wt/odlux/apps/mediatorApp/webpack.config.js')
-rw-r--r-- | sdnr/wt/odlux/apps/mediatorApp/webpack.config.js | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sdnr/wt/odlux/apps/mediatorApp/webpack.config.js b/sdnr/wt/odlux/apps/mediatorApp/webpack.config.js index 151170b46..94943ecd5 100644 --- a/sdnr/wt/odlux/apps/mediatorApp/webpack.config.js +++ b/sdnr/wt/odlux/apps/mediatorApp/webpack.config.js @@ -126,16 +126,20 @@ module.exports = (env) => { colors: true }, proxy: { + "/oauth2/": { + target: "http://localhost:3000", + secure: false + }, "/database/": { - target: "http://localhost:8181", + target: "http://localhost:3000", secure: false }, "/restconf/": { - target: "http://localhost:8181", + target: "http://localhost:3000", secure: false }, "/help/": { - target: "http://localhost:8181", + target: "http://localhost:3000", secure: false } } |