summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/performanceHistoryApp/webpack.config.js')
-rw-r--r--sdnr/wt/odlux/apps/performanceHistoryApp/webpack.config.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/sdnr/wt/odlux/apps/performanceHistoryApp/webpack.config.js b/sdnr/wt/odlux/apps/performanceHistoryApp/webpack.config.js
index 27a5949ac..9c2414864 100644
--- a/sdnr/wt/odlux/apps/performanceHistoryApp/webpack.config.js
+++ b/sdnr/wt/odlux/apps/performanceHistoryApp/webpack.config.js
@@ -26,7 +26,7 @@ module.exports = (env) => {
context: path.resolve(__dirname, "src"),
entry: {
- performanceHistoryApp: ["./plugin.tsx"]
+ performanceHistoryApp: ["./pluginPerformance.tsx"]
},
devtool: env === "release" ? false : "source-map",
@@ -125,12 +125,16 @@ module.exports = (env) => {
colors: true
},
proxy: {
+ "/oauth2/": {
+ target: "http://10.20.6.29:48181",
+ secure: false
+ },
"/restconf": {
- target: "http://localhost:8181",
+ target: "http://10.20.6.29:48181",
secure: false
},
"/database": {
- target: "http://localhost:8181",
+ target: "http://10.20.6.29:48181",
secure: false
}
}