From e1d5ebceceadfe8362125fa52d4cbc57e0fcddba Mon Sep 17 00:00:00 2001 From: Alex P Date: Fri, 27 Apr 2018 14:14:19 -0700 Subject: [PATCH] Use cheap eval instead of regular source map --- ui/webpack/dev.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/webpack/dev.config.js b/ui/webpack/dev.config.js index 7d575003c..3ebbccb85 100644 --- a/ui/webpack/dev.config.js +++ b/ui/webpack/dev.config.js @@ -36,7 +36,7 @@ module.exports = { }, watch: true, cache: true, - devtool: 'source-map', + devtool: 'cheap-eval-source-map', entry: { app: path.resolve(__dirname, '..', 'src', 'index.tsx'), },