diff options
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 4d5d4d1..e9f9a7d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,6 +1,7 @@ module.exports = { entry: './client/index.js', watch: true, + devtool: 'cheap-source-map', output: { filename: './public/bundle.js' }, @@ -9,5 +10,5 @@ module.exports = { { test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ }, { test: /\.jsx$/, loader: 'babel-loader', exclude: /node_modules/ } ] - } + }, } |
