From efb4b2566f7242c98af3fb9d9a7d2e55f1491bd0 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sat, 6 Jul 2024 18:40:29 -0700 Subject: [PATCH] minor --- electron/webpack.config.js | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/electron/webpack.config.js b/electron/webpack.config.js index f6b5a61..b3bdf70 100644 --- a/electron/webpack.config.js +++ b/electron/webpack.config.js @@ -44,8 +44,11 @@ const mainConfig = { ], resolve: { extensions: ['.ts', '.js'] - } -}, rendererConfig = { + }, + optimization: { + minify: false, + }, + }, rendererConfig = { entry: { chat: [path.join(__dirname, 'chat.ts'), path.join(__dirname, 'index.html')], window: [path.join(__dirname, 'window.ts'), path.join(__dirname, 'window.html'), path.join(__dirname, 'build', 'tray@2x.png')], @@ -152,7 +155,8 @@ const mainConfig = { // alias: {qs: 'querystring'} }, optimization: { - splitChunks: {chunks: 'all', minChunks: 2, name: 'common'} + splitChunks: {chunks: 'all', minChunks: 2, name: 'common'}, + minify: false, } }; @@ -187,6 +191,10 @@ const storeWorkerEndpointConfig = _.assign( ] }, + optimization: { + minify: false, + }, + plugins: [ new ForkTsCheckerWebpackPlugin({ async: false,