diff options
| author | Jules Laplace <jules@okfoc.us> | 2017-03-18 21:42:30 +0100 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2017-03-18 21:42:30 +0100 |
| commit | c548b3bd3f0de1a1a74606d60ef9fdd323792918 (patch) | |
| tree | 453c4d1d44d97536a519e66ce17eb488ad098ec2 /webpack.config.js | |
| parent | 09ffebf333adfe45967b44eb8f6237a65a876e25 (diff) | |
user authentication in browser
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/ } ] - } + }, } |
