Odlux Update
[ccsdk/features.git] / sdnr / wt / odlux / apps / configurationApp / webpack.config.js
index 329eb00..0d37c7d 100644 (file)
@@ -10,6 +10,9 @@ 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');
 
 // const __dirname = (path => path.replace(/^([a-z]\:)/, c => c.toUpperCase()))(process.__dirname());
 
@@ -57,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]'
+          }
+        }]
       }]
     },
 
@@ -86,7 +99,7 @@ module.exports = (env) => {
         manifest: require(path.resolve(frameworkPath, "app-manifest.json")),
         sourceType: "umd2"
       }),
-      ...(env === "release") ? [
+      ...(env === "release" ? [
         new webpack.DefinePlugin({
           "process.env": {
             NODE_ENV: "'production'",
@@ -104,7 +117,7 @@ module.exports = (env) => {
             from: 'index.html',
             to: distPath
           }]),
-        ]
+        ])
     ],
 
      watchOptions: {
@@ -128,42 +141,10 @@ module.exports = (env) => {
       stats: {
         colors: true
       },
-       proxy: {
-        "/yang-schema/": {
-          target: "http://10.20.6.29:48181",
-          secure: false
-        },   
-        "/oauth2/": {
-          target: "http://10.20.6.29:48181",
-          secure: false
-        },
-        "/database/": {
-          target: "http://10.20.6.29:48181",
-          secure: false
-        },
-        "/restconf/": {
-          target: "http://10.20.6.29:48181",
-          secure: false
-        },
-        "/rests/": {
-          target: "http://10.20.6.29:48181",
-          secure: false
-        },
-        "/help/": {
-          target: "http://10.20.6.29:48181",
-          secure: false
-        },
-        "/tree/": {
-          target: "http://10.20.6.29:48181",
-          secure: false
-        },
-        "/websocket": {
-          target: "http://10.20.6.29:48181",
-          ws: true,
-          changeOrigin: true,
-          secure: false
-        }
-      }
+      before: function(app, server, compiler) {
+        app.get('/oauth/policies',(_, res) => res.json(policies));
+      },
+      proxy: proxyConf,
     }
   }];
 }