Use better JS source maps during development (#3019)

See http://webpack.github.io/docs/configuration.html#devtool
pull/2702/head
Thibaud Colas 2016-09-26 17:24:02 +03:00 zatwierdzone przez Karl Hobley
rodzic c9a39db196
commit b13441e108
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -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;