0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 05:02:57 +01:00

Use better JS source maps during development (#3019)

See http://webpack.github.io/docs/configuration.html#devtool
This commit is contained in:
Thibaud Colas 2016-09-26 17:24:02 +03:00 committed by Karl Hobley
parent c9a39db196
commit b13441e108

View File

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