From 8db7282d9e0b503df2c4eb96b05f5c5a4e59b43e Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 18 Oct 2020 16:43:58 -0400 Subject: [PATCH] Change webpack devtool to more strict format. --- src/ustaxviewer.ts | 2 +- webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ustaxviewer.ts b/src/ustaxviewer.ts index 25d37a2..777a414 100755 --- a/src/ustaxviewer.ts +++ b/src/ustaxviewer.ts @@ -103,7 +103,7 @@ const compiler = webpack({ port: 8488 }, - devtool: 'cheap-module-eval-source-map', + devtool: 'eval-cheap-module-source-map', plugins: [ new (require('html-webpack-plugin'))({ diff --git a/webpack.config.js b/webpack.config.js index 888e84d..a5cb57f 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -56,7 +56,7 @@ module.exports = { contentBase: 'public/' }, - devtool: 'cheap-module-eval-source-map', + devtool: 'eval-cheap-module-source-map', plugins: [ new (require('html-webpack-plugin'))({ -- 2.22.5