Open5

react-scripts startでfirefoxを開きたい

You-sakuYou-saku

yarn create react-app でreactのプロジェクトを作成したとき

package.json
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  }
You-sakuYou-saku
yarn run start

を実行するとどうしてもChromeを開いてしまう
Firefoxで開きたかった

You-sakuYou-saku
package.json
"scripts": {
    "start": "BROWSER=firefox react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  }

応急処置としてのこれ

You-sakuYou-saku

多分パソコン自体のデフォルトブラウザ?の設定とかでもいけると思う(知らんけど)
まぁ一旦は応急処置で良いかなというところである