aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-12-10 01:01:36 +0100
committerNoah Loomans <noahloomans@gmail.com>2017-12-10 01:01:36 +0100
commit4ce420528dd747021f7fa51483710388f5733724 (patch)
treeed01c295124b07fdbfbce70463af9dd400ab1125 /webpack.config.js
parent0141d1f9f4c7ca1755e0a5da908e9d27cf7aa0e1 (diff)
Add Search container
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/webpack.config.js b/webpack.config.js
index f7e74da..baba614 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -4,7 +4,7 @@ module.exports = {
entry: './src/client/react/index.js',
output: {
path: path.resolve(__dirname, 'src/client/static'),
- filename: 'bundle.js'
+ filename: 'bundle.js',
},
module: {
rules: [
@@ -12,8 +12,8 @@ module.exports = {
test: [/\.js$/],
exclude: [/node_modules/],
loader: 'babel-loader',
- options: { presets: ['es2015', 'react'] }
- }
- ]
- }
-} \ No newline at end of file
+ options: { presets: ['es2015', 'react', 'stage-2'] },
+ },
+ ],
+ },
+};