From 8e10c18080eb6398027e3500bc636fa1cf38d1ed Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Thu, 12 Apr 2018 17:52:32 -0700 Subject: [PATCH] fix webpack source maps for firefox [skip ci] --- webpack.client.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.client.config.js b/webpack.client.config.js index 8dcfefd..c7f583c 100644 --- a/webpack.client.config.js +++ b/webpack.client.config.js @@ -69,5 +69,5 @@ module.exports = { logLevel: 'silent' // do not bother Webpacker, who runs with --json and parses stdout }) ]), - devtool: isDev ? 'cheap-module-eval-source-map' : 'source-map' + devtool: isDev ? 'cheap-module-source-map' : 'source-map' }