目前,我使用npm start
启动react应用程序,它会触发package.json中的react-scripts start
命令。
这会自动启动Chrome浏览器,这很好,但我需要它在"禁用网络安全">模式。
这是使用以下命令完成的:
open -n -a /Applications/Google Chrome.app/Contents/MacOS/Google Chrome --args --user-data-dir="/tmp/chrome_dev_test" --disable-web-security
我该如何使其运行替代或标准chrome?
我试过:
"start": "BROWSER='open -n -a /Applications/Google Chrome.app/Contents/MacOS/Google Chrome --args --user-data-dir='/tmp/chrome_dev_test' --disable-web-security' react-scripts start",
在我的package.json脚本中,但似乎什么都没发生。
在package.json 中这样做
"scripts": {
"start": "react-scripts start",
"start:dev": "npm run start:browser && npm run start",
"start:browser": "open -n -a /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --user-data-dir='/tmp/chrome_dev_test' --disable-web-security",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},