We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When forking this repo and running the start command, node errors out with code 'ERR_OSSL_EVP_UNSUPPORTED'.
Upon some research, I realised this is often an issue with using newer node versions.
To prevent the error from occurring, I changed two of the script commands from this (as is in your package.json):
"scripts": { "start": "react-scripts start", "build": "react-scripts build", }
To this:
"scripts": { "start": "react-scripts --openssl-legacy-provider start", "build": "react-scripts --openssl-legacy-provider build", }
This fixed the issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When forking this repo and running the start command, node errors out with code 'ERR_OSSL_EVP_UNSUPPORTED'.
Upon some research, I realised this is often an issue with using newer node versions.
To prevent the error from occurring, I changed two of the script commands from this (as is in your package.json):
To this:
This fixed the issue.
The text was updated successfully, but these errors were encountered: