Я хотел бы иметь прокси-сервер в моем клиентском клиенте, мой пакет.json содержит:
...
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"proxy": {
"/auth/google": {
"target": "http://localhost:5000"
}
},
...
Но когда я его запустил, я получил ошибку
When specified, "proxy" in package.json must be a string.
[1] Instead, the type of "proxy" was "object".
[1] Either remove "proxy" from package.json, or make it a string.
Я попытался преобразовать в строку, никаких ошибок, но прокси не работает
"proxy": "http://localhost:5000"
Мой App.js
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>hey there</p>
<a href="/auth/google">Sign In With Google</a>
</header>
</div>