I'm now using a iMac with Catalina. I'm not able to enable the create-react-app auto refresh. I tried everything from this issue, meaning:
My dependencies setting is:
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
My scripts setting is:
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
There is the index.js in my /src folder.
I've tried adding a .env with:
FAST_REFRESH=false
I've tried running the app with:
FAST_REFRESH=false npm run start
The only way for me to visualise new code edits is to shut down the server and npm start again. What can I do?