aboutsummaryrefslogtreecommitdiffstats
path: root/gui-pdp-monitoring/src/webapp/webpack.config.js
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2020-03-17 19:09:29 +0000
committerGerrit Code Review <gerrit@onap.org>2020-03-17 19:09:29 +0000
commitf9e85b70f97c139911466336f29fb365de53306c (patch)
tree6e0d810e1f83af5b1fe6815049814edaa2cd24a4 /gui-pdp-monitoring/src/webapp/webpack.config.js
parentc56aac90092406753c17eec883d80d841bcd8730 (diff)
parent4d4f41c7cc831906100e10838b40c3b8d86657f2 (diff)
Merge "Setup js unit test and code coverage framework"
Diffstat (limited to 'gui-pdp-monitoring/src/webapp/webpack.config.js')
-rw-r--r--gui-pdp-monitoring/src/webapp/webpack.config.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/gui-pdp-monitoring/src/webapp/webpack.config.js b/gui-pdp-monitoring/src/webapp/webpack.config.js
new file mode 100644
index 0000000..f387ebe
--- /dev/null
+++ b/gui-pdp-monitoring/src/webapp/webpack.config.js
@@ -0,0 +1,15 @@
+const path = require('path');
+
+module.exports = {
+ mode: 'production',
+ entry: './js/MonitoringMain.js',
+ output: {
+ filename: 'bundle.js',
+ path: path.resolve(__dirname, 'dist'),
+ },
+ devServer: {
+ contentBase: path.join(__dirname, 'dist'),
+ compress: true,
+ port: 9000
+ }
+};