You are on page 1of 1

Solution

As a workaround solution you can fix this by using the legacy provider for openssl.
So, you need to edit the package.json file under your application’s root directory
and check for the following lines and replace them accordingly.

replace "start": "react-scripts start" by "start": "react-scripts --openssl-legacy-


provider start"
replace "build": "react-scripts build" by "build": "react-scripts --openssl-legacy-
provider build"

You might also like