Skip to content

Commit

Permalink
Fix: removed "--openssl-legacy-provider" from package.json
Browse files Browse the repository at this point in the history
Removed unnecessary "--openssl-legacy-provider" argument, which was
required for webpack@4. Now, crate-admin successfully runs on windows
after clean installation.
  • Loading branch information
neon0404 authored and amotl committed Oct 25, 2024
1 parent c233dd4 commit ba480e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@
},
"scripts": {
"cratedb": "docker run -it --rm --publish 4200:4200 crate/crate:nightly -Chttp.cors.enabled=true -Chttp.cors.allow-origin=*",
"develop": "NODE_OPTIONS=--openssl-legacy-provider webpack serve --progress --config=webpack.dev.config.js --open-target=http://localhost:9000/?base_uri=http://localhost:4200#!/",
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.prod.config.js --progress",
"test": "NODE_OPTIONS=--openssl-legacy-provider karma start"
"develop": "webpack serve --progress --config=webpack.dev.config.js --open-target=http://localhost:9000/?base_uri=http://localhost:4200#!/",
"build": "webpack --config webpack.prod.config.js --progress",
"test": "karma start"
}
}

0 comments on commit ba480e1

Please sign in to comment.