From 388c2583298d98d8ccdeae185c56452cdcaf7a6e Mon Sep 17 00:00:00 2001 From: Tyler Schloesser Date: Tue, 27 Feb 2024 10:13:44 -0800 Subject: [PATCH] disable minification --- packages/app/webpack.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/app/webpack.config.js b/packages/app/webpack.config.js index a28e4e1..6c46503 100644 --- a/packages/app/webpack.config.js +++ b/packages/app/webpack.config.js @@ -30,6 +30,7 @@ module.exports = (_env, argv) => { templateParameters: require('./index.json'), template: 'index.handlebars', filename: prod ? 'index.[contenthash].html' : 'index.html', + minify: false, }), new CopyPlugin({ patterns: [ @@ -45,5 +46,8 @@ module.exports = (_env, argv) => { historyApiFallback: true, watchFiles: ['index.handlebars'], }, + optimization: { + minimize: false, + } } }