diff options
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/webpack.config.js b/webpack.config.js index 2ccc988..945d633 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' } ] } };
\ No newline at end of file |
