diff options
author | Dan Timoney <dtimoney@att.com> | 2019-03-25 14:27:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-25 14:27:10 +0000 |
commit | 1f68c64e8bcf88ee485c69d36c67b0ad6590a293 (patch) | |
tree | 34ab01010c3a8b3bb4086d4b683a6fd8040f2992 /sdnr/wt/odlux/framework/webpack.config.js | |
parent | 528f6391de8495f3346b5e22ede404c00b9955b7 (diff) | |
parent | 2d4424c28ac35763ef44c42ae2f01664d42b268c (diff) |
Merge "Security provider for UX-Client-Login"
Diffstat (limited to 'sdnr/wt/odlux/framework/webpack.config.js')
-rw-r--r-- | sdnr/wt/odlux/framework/webpack.config.js | 6 |
1 files changed, 3 insertions, 3 deletions
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
}
}
|