You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running with Node.js v17+, we get Error: error:0308010c:digital envelope routines::unsupported when doing npm start.
To Reproduce
Use Node.js v17+
cd newIDE/app && npm install && npm start
Other details
To workaround, we can replace: "start": "npm run import-resources && npm run make-version-metadata && react-scripts start",
by: "start": "npm run import-resources && npm run make-version-metadata && react-scripts --openssl-legacy-provider --no-experimental-fetch start",
in newIDE/app/package.json.
Describe the bug
When running with Node.js v17+, we get
Error: error:0308010c:digital envelope routines::unsupported
when doingnpm start
.To Reproduce
cd newIDE/app && npm install && npm start
Other details
To workaround, we can replace:
"start": "npm run import-resources && npm run make-version-metadata && react-scripts start",
by:
"start": "npm run import-resources && npm run make-version-metadata && react-scripts --openssl-legacy-provider --no-experimental-fetch start",
in
newIDE/app/package.json
.But we should upgrade create-react-app for a long term fix, because the problem is coming from webpack: react-scripts fails to build project with Node 17 facebook/create-react-app#11562
The text was updated successfully, but these errors were encountered: