Skip to content

Commit

Permalink
Disable minimization
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeop committed Oct 26, 2023
1 parent f141793 commit 89826a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/app/webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ module.exports = (env) => {
chunkFilename: '[id].[contenthash].js'
};
const optimization: webpack.Configuration['optimization'] = {
moduleIds: 'named' as const
moduleIds: 'named' as const,
minimize: false
};
const jsxRule: webpack.RuleSetRule = {
test: /\.(js|jsx|tsx|ts)$/,
Expand Down

0 comments on commit 89826a3

Please sign in to comment.