Chrome中禁用同源策略的自定义React启动脚本



目前,我使用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"
},

相关内容

  • 没有找到相关文章

最新更新