From 6fb11a608b990966fc6d9009aee98d417c2d827c Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 15 Mar 2018 20:33:28 +0900 Subject: [PATCH] Disable source map --- webpack.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.ts b/webpack.config.ts index da8b37564..873251087 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -241,7 +241,7 @@ module.exports = entries.map(x => { modules: ['node_modules', './webpack/loaders'] }, cache: true, - devtool: 'source-map', + devtool: false, //'source-map', optimization: { minimize: isProduction && doMinify },