From 2d4424c28ac35763ef44c42ae2f01664d42b268c Mon Sep 17 00:00:00 2001 From: Herbert Eiselt Date: Tue, 12 Mar 2019 18:00:21 +0100 Subject: Security provider for UX-Client-Login Use ODL provided oauth2/token for UX clients Change-Id: I9f9ae931fc5e74dc13076bd23551d163c0685606 Issue-ID: SDNC-648 Signed-off-by: Herbert Eiselt --- sdnr/wt/odlux/framework/webpack.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sdnr/wt/odlux/framework/webpack.config.js') diff --git a/sdnr/wt/odlux/framework/webpack.config.js b/sdnr/wt/odlux/framework/webpack.config.js index 4231d67e5..c732af6ec 100644 --- a/sdnr/wt/odlux/framework/webpack.config.js +++ b/sdnr/wt/odlux/framework/webpack.config.js @@ -82,7 +82,7 @@ module.exports = (env) => { minimizer: env !== "release" ? [] : [new TerserPlugin({ terserOptions: { mangle:{ - reserved:["./app.tsx"] + reserved:["./app.tsx"] }, warnings: false, // false, true, "verbose" compress: { @@ -173,8 +173,8 @@ module.exports = (env) => { colors: true }, proxy: { - "/api/**/*": { - target: "http://localhost:3001", + "/oauth2/**/*": { + target: "http://localhost:3000", secure: false } } -- cgit 1.2.3-korg