react-scripts start opens firefox (which is my default browser), I've tried to following to make it open chrome on start.
- set BROWSER=chrome in
.env
file (also tried google-chrome and google-chrome-stable) - set in package.json
"start": "BROWSER=chrome react-scripts start"
- installing cross-env and adding
cross-env BROWSER=chrome
in package.json
Neither works.