Skip to content

Commit

Permalink
disable minification
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerschloesser committed Feb 27, 2024
1 parent c41fabc commit 388c258
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/app/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand All @@ -45,5 +46,8 @@ module.exports = (_env, argv) => {
historyApiFallback: true,
watchFiles: ['index.handlebars'],
},
optimization: {
minimize: false,
}
}
}

0 comments on commit 388c258

Please sign in to comment.