I know this question has already been asked but I can\'t find a solution. When I run npm start inside a react project, I always get the same logs (see below). The o
It took me two days to resolve this issue.
Its because of the incompatibility issue of react-scripts so try installing different versions like:
This worked for me:
npm install --save react-scripts@2.1.8
This one did work for many as they claim:
npm install --save react-scripts@3.3.0
It should work as it did to me after an arduous struggle.