Skip to content

Commit

Permalink
chore: set webpack hashFunction to modern sha256, remove legacy-provider
Browse files Browse the repository at this point in the history
Fixes argoproj#2609

Signed-off-by: Dimitri John Ledkov <[email protected]>
  • Loading branch information
xnox committed Mar 26, 2024
1 parent d108c59 commit 8ac4393
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "NODE_OPTIONS=--openssl-legacy-provider webpack serve --config ./src/app/webpack.dev.js",
"build": "rm -rf dist && NODE_OPTIONS=--openssl-legacy-provider webpack --config ./src/app/webpack.prod.js",
"start": "webpack serve --config ./src/app/webpack.dev.js",
"build": "rm -rf dist && webpack --config ./src/app/webpack.prod.js",
"test": "jest",
"eject": "react-scripts eject",
"protogen": "../hack/swagger-codegen.sh generate -i ../pkg/apiclient/rollout/rollout.swagger.json -l typescript-fetch -o src/models/rollout/generated"
Expand Down
1 change: 1 addition & 0 deletions ui/src/app/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const config = {
main: './src/app/index.tsx',
},
output: {
hashFunction: 'sha256',
filename: '[name].[chunkhash].js',
path: __dirname + '/../../dist/app',
},
Expand Down

0 comments on commit 8ac4393

Please sign in to comment.