I have the same issue as #12
The problem is that I run app on another computer, but all posts in fronted are hardcoded with localhost:5000
LoginPage.js
...
try {
await httpRequest.post("http://localhost:5000/login", {
email,
password,
});
, so frontend never reaches backend,
It would be great if backend host is configurable,
I have the same issue as #12 The problem is that I run app on another computer, but all posts in fronted are hardcoded with localhost:5000 LoginPage.js ... try { await httpRequest.post("http://localhost:5000/login", { email, password, });
, so frontend never reaches backend, It would be great if backend host is configurable,