diff --git a/webpack.dev.config.js b/webpack.dev.config.js index 7a5c7e6fef..e6c159af92 100644 --- a/webpack.dev.config.js +++ b/webpack.dev.config.js @@ -4,6 +4,7 @@ var config = base('development'); // development overrides go here config.watch = true; -config.devtool = 'cheap-module-eval-source-map'; +// See http://webpack.github.io/docs/configuration.html#devtool +config.devtool = 'inline-source-map'; module.exports = config;