Skip to content

Commit

Permalink
use legacy openssl provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Yavorsky committed Jun 5, 2024
1 parent 9962a66 commit b13e74f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"private": true,
"scripts": {
"dev": "next dev",
"build:dev": "env-cmd -f .env.development next build && next export",
"build:stage": "env-cmd -f .env.staging next build && next export",
"build:prod": "env-cmd -f .env.production next build && next export",
"build:ui": "env-cmd -f .env.ui next build && next export",
"build:dev": "NODE_OPTIONS=--openssl-legacy-provider env-cmd -f .env.development next build && next export",
"build:stage": "NODE_OPTIONS=--openssl-legacy-provider env-cmd -f .env.staging next build && next export",
"build:prod": "NODE_OPTIONS=--openssl-legacy-provider env-cmd -f .env.production next build && next export",
"build:ui": "NODE_OPTIONS=--openssl-legacy-provider env-cmd -f .env.ui next build && next export",
"lint": "next lint",
"check-formatting": "prettier --check .",
"prepare": "cd ${HOOKS_DIR:-..} && husky install frontend/.husky",
Expand Down

0 comments on commit b13e74f

Please sign in to comment.