Update ODLUX
[ccsdk/features.git] / sdnr / wt / odlux / apps / configurationApp / webpack.config.js
index 5461c14..2f7ab11 100644 (file)
@@ -10,6 +10,7 @@ const path = require("path");
 const webpack = require("webpack");
 const CopyWebpackPlugin = require("copy-webpack-plugin");
 const TerserPlugin = require('terser-webpack-plugin');
+const proxyConf = require('../../proxy.conf');
 
 const policies = require('./policies.json');
 
@@ -40,7 +41,7 @@ module.exports = (env) => {
     output: {
       path: distPath,
       filename: "[name].js",
-      library: "[name]",
+      library: "configurationApp",
       libraryTarget: "umd2",
       chunkFilename: "[name].js"
     },
@@ -59,6 +60,16 @@ module.exports = (env) => {
         use: [{
           loader: "babel-loader"
         }]
+      },{
+        //don't minify images
+        test: /\.(png|gif|jpg|svg)$/,
+        use: [{
+          loader: 'url-loader',
+          options: {
+            limit: 10,
+            name: './images/[name].[ext]'
+          }
+        }]
       }]
     },
 
@@ -133,56 +144,7 @@ module.exports = (env) => {
       before: function(app, server, compiler) {
         app.get('/oauth/policies',(_, res) => res.json(policies));
       },
-       proxy: {
-        "/about": {
-          target: "http://localhost:18181",
-          secure: false
-        }, 
-        "/yang-schema/": {
-          target: "http://localhost:18181",
-          secure: false
-        },   
-        "/oauth/": {
-          target: "http://localhost:18181",
-          secure: false
-        },
-        "/database/": {
-          target: "http://localhost:18181",
-          secure: false
-        },
-        "/restconf/": {
-          target: "http://localhost:18181",
-          secure: false
-        },
-        "/rests/": {
-          target: "http://localhost:18181",
-          secure: false
-        },
-        "/help/": {
-          target: "http://localhost:18181",
-          secure: false
-        },
-         "/about/": {
-          target: "http://localhost:18181",
-          secure: false
-        },
-        "/tree/": {
-          target: "http://localhost:18181",
-          secure: false
-        },
-        "/websocket": {
-          target: "http://localhost:18181",
-          ws: true,
-          changeOrigin: true,
-          secure: false
-        },
-        "/apidoc": {
-          target: "http://localhost:18181",
-          ws: true,
-          changeOrigin: true,
-          secure: false
-        }
-      }
+      proxy: proxyConf,
     }
   }];
 }