Initial commit

Change-Id: Ifc297dd3b5a52bb42d79a08bac4d05c2400ae779
diff --git a/webpack.config.js b/webpack.config.js
new file mode 100644
index 0000000..2917248
--- /dev/null
+++ b/webpack.config.js
@@ -0,0 +1,30 @@
+const path = require('path')
+
+module.exports = {
+    entry: path.resolve(__dirname, 'jaas-client', 'src', 'index.js'),
+    output: {
+        path: path.resolve(__dirname, 'jaas-client', 'dist'),
+        filename: 'bundle.js'
+    },
+    mode: 'development',
+    module: {
+        rules: [
+            {
+                test: /\.jsx?/,
+                exclude: /node_modules/,
+                loader: [
+                    {
+                        loader: 'babel-loader',
+                        query: {
+                            presets: ['@babel/preset-react']
+                        }
+                    }
+                ]
+            },
+            {
+                test: /\.css$/i,
+                use: ['style-loader', 'css-loader'],
+            }
+        ]
+    },
+}
\ No newline at end of file