我已经安装了 react-app-rewired。在 package.json 我设置
"scripts": {
"start": "react-app-rewired start --scripts-version react-scripts",
}
当我跑
npm start
它会在 localhost:3000 上打开一个浏览器窗口我想将它打开到我在 hosts 文件中设置的特定 URL:port。这将允许我的本地前端应用程序联系远程 API,而不会引发 CORS 问题。