Skip to content

Commit

Permalink
fix: update webpack.prod.ts to disable code minimization
Browse files Browse the repository at this point in the history
The webpack.prod.ts file was modified to disable code minimization in the production mode. This is a temporary change to prevent issues with unresolved references that started appearing in the minimized version of Vlocode.
  • Loading branch information
Codeneos committed Jun 27, 2024
1 parent d890a75 commit 83fb1de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/vscode-extension/webpack/webpack.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import { default as common } from './webpack.common';

const production: webpack.Configuration = {
mode: 'production',
devtool: false
devtool: false,
optimization: {
minimize: false
}
};

module.exports = env => common(env, production);

0 comments on commit 83fb1de

Please sign in to comment.