From 3822f0912b8ee6993381032e3910b9ab99028930 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Fri, 5 Jan 2018 02:30:01 +0330 Subject: [PATCH] fix: use use non-eval source maps as of chrome 63 dev-tools bug --- lib/builder/webpack/base.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/builder/webpack/base.config.js b/lib/builder/webpack/base.config.js index 16e33910ac..346723d721 100644 --- a/lib/builder/webpack/base.config.js +++ b/lib/builder/webpack/base.config.js @@ -18,7 +18,7 @@ const WarnFixPlugin = require('./plugins/warnfix') module.exports = function webpackBaseConfig({ name, isServer }) { const config = { name, - devtool: this.options.dev ? 'cheap-eval-source-map' : false, + devtool: this.options.dev ? 'cheap-source-map' : false, entry: { app: null },