summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2017-03-18 21:42:30 +0100
committerJules Laplace <jules@okfoc.us>2017-03-18 21:42:30 +0100
commitc548b3bd3f0de1a1a74606d60ef9fdd323792918 (patch)
tree453c4d1d44d97536a519e66ce17eb488ad098ec2 /webpack.config.js
parent09ffebf333adfe45967b44eb8f6237a65a876e25 (diff)
user authentication in browser
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js3
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/ }
]
- }
+ },
}