blob: 6d70b04b0a4d611e06ddda2be5e0c42065cb6a94 [file] [log] [blame]
herberte6d0d672019-12-14 01:05:47 +01001/**
2 * Webpack 4 configuration file
3 * see https://webpack.js.org/configuration/
4 * see https://webpack.js.org/configuration/dev-server/
5 */
6
7"use strict";
8
9const path = require("path");
10const webpack = require("webpack");
11const CopyWebpackPlugin = require("copy-webpack-plugin");
12const TerserPlugin = require('terser-webpack-plugin');
13
14// const __dirname = (path => path.replace(/^([a-z]\:)/, c => c.toUpperCase()))(process.__dirname());
15
16module.exports = (env) => {
17 const distPath = path.resolve(__dirname, env === "release" ? "." : "../..", "dist");
18 const frameworkPath = path.resolve(__dirname, env === "release" ? "../../framework" : "../..", "dist");
19 return [{
20 name: "App",
21
22 mode: "none", //disable default behavior
23
24 target: "web",
25
26 context: path.resolve(__dirname, "src"),
27
28 entry: {
29 connectApp: ["./pluginConnect.tsx"]
30 },
31
32 devtool: env === "release" ? false : "source-map",
33
34 resolve: {
35 extensions: [".ts", ".tsx", ".js", ".jsx"]
36 },
37
38 output: {
39 path: distPath,
40 filename: "[name].js",
41 library: "[name]",
42 libraryTarget: "umd2",
43 chunkFilename: "[name].js"
44 },
45 module: {
46 rules: [{
47 test: /\.tsx?$/,
48 exclude: /node_modules/,
49 use: [{
50 loader: "babel-loader"
51 }, {
52 loader: "ts-loader"
53 }]
54 }, {
55 test: /\.jsx?$/,
56 exclude: /node_modules/,
57 use: [{
58 loader: "babel-loader"
59 }]
60 }]
61 },
62
63 optimization: {
64 noEmitOnErrors: true,
65 namedModules: env !== "release",
66 minimize: env === "release",
67 minimizer: env !== "release" ? [] : [new TerserPlugin({
68 terserOptions: {
69 warnings: false, // false, true, "verbose"
70 compress: {
71 drop_console: true,
72 drop_debugger: true,
73 }
74 }
75 })],
76 },
77 plugins: [
78 new webpack.DllReferencePlugin({
79 context: path.resolve(__dirname, "../../framework/src"),
80 manifest: require(path.resolve(frameworkPath, "vendor-manifest.json")),
81 sourceType: "umd2"
82 }),
83 new webpack.DllReferencePlugin({
84 context: path.resolve(__dirname, "../../framework/src"),
85 manifest: require(path.resolve(frameworkPath, "app-manifest.json")),
86 sourceType: "umd2"
87 }),
88 ...(env === "release") ? [
89 new webpack.DefinePlugin({
90 "process.env": {
91 NODE_ENV: "'production'",
92 VERSION: JSON.stringify(require("./package.json").version)
93 }
94 }),
95 ] : [
96 new webpack.DefinePlugin({
97 "process.env": {
98 NODE_ENV: "'development'",
99 VERSION: JSON.stringify(require("./package.json").version)
100 }
101 }),
102 new CopyWebpackPlugin([{
103 from: 'index.html',
104 to: distPath
105 }]),
106 ]
107 ],
108
109 devServer: {
110 public: "http://localhost:3100",
111 contentBase: frameworkPath,
112
113 compress: true,
114 headers: {
115 "Access-Control-Allow-Origin": "*"
116 },
117 host: "0.0.0.0",
118 port: 3100,
119 disableHostCheck: true,
120 historyApiFallback: true,
121 inline: true,
122 hot: false,
123 quiet: false,
124 stats: {
125 colors: true
126 },
127 proxy: {
128 "/oauth2/": {
129 target: "http://10.20.6.29:28181",
130 secure: false
131 },
132 "/database/": {
133 target: "http://10.20.6.29:28181",
134 secure: false
135 },
136 "/restconf/": {
137 target: "http://10.20.6.29:28181",
138 secure: false
139 },
140 "/help/": {
141 target: "http://10.20.6.29:28181",
142 secure: false
143 },
144 "/websocket": {
145 target: "http://10.20.6.29:28181",
146 ws: true,
147 changeOrigin: true,
148 secure: false
149 }
150 }
151 }
152 }];
153}