summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js
new file mode 100644
index 0000000..54aaf75
--- /dev/null
+++ b/webpack.config.js
@@ -0,0 +1,12 @@
+module.exports = {
+ entry: './geshem.js',
+ output: {
+ path: __dirname,
+ filename: 'static/js/bundle.js',
+ },
+ module: {
+ loaders: [
+ { test: /\.js$/, exclude: /node_modules/, loader: 'babel?presets[]=react,presets[]=es2015' }
+ ]
+ }
+} \ No newline at end of file