From 448696e920cc06f18a023dc2ebf304690f711edd Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Tue, 21 Jun 2016 21:54:42 +0300 Subject: Working version --- webpack.config.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js index feca40a..5d1e488 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,12 +1,13 @@ module.exports = { - entry: "./index.js", + entry: './index.js', output: { path: __dirname, - filename: "bundle.js" + filename: 'bundle.js' }, module: { loaders: [ - { test: /\.css$/, loader: "style!css" } + { test: /\.js$/, loader: 'babel', }, + { test: /\.css$/, loader: 'style!css' } ] } }; -- cgit v1.3.1