From 5e0c5c65a0d80e70ecfb3705312ea622063c3e2a Mon Sep 17 00:00:00 2001 From: Tyler Sl8r <tylerscottslater@gmail.com> Date: Fri, 22 Jul 2016 16:34:48 -0600 Subject: [PATCH] Changed the webpack devtool setting to be eval-source-map This allows us to debug with source maps when developing --- config/webpack.config.dev.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/webpack.config.dev.js b/config/webpack.config.dev.js index 65b3936ccb8..00ac03580c6 100644 --- a/config/webpack.config.dev.js +++ b/config/webpack.config.dev.js @@ -30,7 +30,7 @@ var faviconPath = path.resolve(__dirname, relativePath, 'favicon.ico'); var buildPath = path.join(__dirname, isInNodeModules ? '../../..' : '..', 'build'); module.exports = { - devtool: 'eval', + devtool: 'eval-source-map', entry: [ require.resolve('webpack-dev-server/client') + '?http://localhost:3000', require.resolve('webpack/hot/dev-server'),