Skip to content

Commit

Permalink
Merge branch 'master' into tf/remove-schnorr
Browse files Browse the repository at this point in the history
* master:
  fix(bb.js): don't minify bb.js - webpack config (#10170)
  • Loading branch information
TomAFrench committed Nov 25, 2024
2 parents 9d841f8 + 6e7fae7 commit 9bed25c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions barretenberg/ts/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import { fileURLToPath } from 'url';
import ResolveTypeScriptPlugin from 'resolve-typescript-plugin';
import webpack from 'webpack';

/**
* @type {import('webpack').Configuration}
*/
export default {
target: 'web',
mode: 'production',
Expand Down Expand Up @@ -40,6 +43,9 @@ export default {
type: 'module',
},
},
optimization: {
minimize: false,
},
experiments: {
outputModule: true,
},
Expand Down

0 comments on commit 9bed25c

Please sign in to comment.