From 76e15da628a2b550a1cccf430398bd15eaafc17b Mon Sep 17 00:00:00 2001 From: Erwan Baynaud Date: Sat, 8 Jun 2019 13:09:00 +0200 Subject: [PATCH] Disabling temporarily source-map Workaround to https://github.com/AfterShip/phone/issues/151 Due to https://github.com/webpack-contrib/babel-minify-webpack-plugin/issues/68 --- webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 19dd13d..a036a6b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,7 +5,8 @@ const MinifyPlugin = require('babel-minify-webpack-plugin'); const webpack = require('webpack'); module.exports = { - devtool: 'source-map', + // devtool: 'source-map', + devtool: 'none', entry: './lib/index.js', output: { path: path.resolve(__dirname, 'dist'),