diff options
author | Aijana Schumann <aijana.schumann@highstreet-technologies.com> | 2020-12-04 17:40:42 +0100 |
---|---|---|
committer | Aijana S <aijana.schumann@highstreet-technologies.com> | 2020-12-07 14:52:03 +0000 |
commit | e3ad1d3884cb4c801679e3390088ce17c997f9d1 (patch) | |
tree | f9327486345ca79303916c30a8e79f696cbfdd80 /sdnr/wt/odlux/apps/configurationApp/webpack.config.js | |
parent | 57c041563b4419b9cb3868507a508e24c5eee04d (diff) |
Update ConfigurationApp
Add grouping per yang module
Issue-ID: CCSDK-3023
Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com>
Change-Id: I7fd15d0a7dc982c6d824e679b5a0d1eeaaa2e7a8
Diffstat (limited to 'sdnr/wt/odlux/apps/configurationApp/webpack.config.js')
-rw-r--r-- | sdnr/wt/odlux/apps/configurationApp/webpack.config.js | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/sdnr/wt/odlux/apps/configurationApp/webpack.config.js b/sdnr/wt/odlux/apps/configurationApp/webpack.config.js index 329eb00f4..6349305ac 100644 --- a/sdnr/wt/odlux/apps/configurationApp/webpack.config.js +++ b/sdnr/wt/odlux/apps/configurationApp/webpack.config.js @@ -129,36 +129,46 @@ module.exports = (env) => { colors: true }, proxy: { + "/about": { + // target: "http://10.20.6.29:48181", + target: "http://localhost:8181", + secure: false + }, "/yang-schema/": { - target: "http://10.20.6.29:48181", + target: "http://localhost:8181", secure: false }, "/oauth2/": { - target: "http://10.20.6.29:48181", + // target: "https://10.20.35.188:30205", + target: "http://localhost:8181", secure: false }, "/database/": { - target: "http://10.20.6.29:48181", + target: "http://localhost:8181", secure: false }, "/restconf/": { - target: "http://10.20.6.29:48181", + target: "http://localhost:8181", secure: false }, "/rests/": { - target: "http://10.20.6.29:48181", + target: "http://localhost:8181", secure: false }, "/help/": { - target: "http://10.20.6.29:48181", + target: "http://localhost:8181", + secure: false + }, + "/about/": { + target: "http://localhost:8181", secure: false }, "/tree/": { - target: "http://10.20.6.29:48181", + target: "http://localhost:8181", secure: false }, "/websocket": { - target: "http://10.20.6.29:48181", + target: "http://localhost:8181", ws: true, changeOrigin: true, secure: false |