diff options
Diffstat (limited to 'sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js')
-rw-r--r-- | sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js b/sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js index 515c5826b..55d98b4d7 100644 --- a/sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js +++ b/sdnr/wt/odlux/apps/linkCalculationApp/webpack.config.js @@ -165,6 +165,20 @@ module.exports = (env) => { ws: true, changeOrigin: true, secure: false + }, + "/terrain": { + target: "http://10.20.11.163:5200", + secure: false, + pathRewrite(pathname) { + return pathname.replace(/^\/terrain/, '') + } + }, + "/terrain/": { + target: "http://10.20.11.163:5200", + secure: false, + pathRewrite(pathname) { + return pathname.replace(/^\/terrain/, '/') + } } } |