From 6c637c4ec10c0d3ce98fc4863e45640377fb6aae Mon Sep 17 00:00:00 2001 From: Alexander Wunschik Date: Sat, 29 Oct 2016 22:17:11 +0200 Subject: [PATCH] generate details source maps of webpack modules --- gulpfile.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8e83b26f..697185d3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -72,7 +72,11 @@ var webpackConfig = { }, module: webpackModule, plugins: [ bannerPlugin ], - cache: true + cache: true, + + // generate details sourcempas of webpack modules + devtool: 'source-map' + //debug: true, //bail: true };