Guldberg
07/29/2022, 10:26 AMts
// login function
async login(email: string, password: string) {
console.log(
await ThirdPartyEmailPassword.emailPasswordSignUp({
formFields: [
{
id: 'email',
value: email,
},
{
id: 'password',
value: password,
},
],
})
);
}
I get 404 error, stating that the route in the backend (NestJS) does not exist POST http://localhost:3333/api/signup 404 (Not Found)
.
What am I supposed to do, in order for the backend to to the correct think on those routes?rp_st
07/29/2022, 10:27 AMGuldberg
07/29/2022, 10:28 AMrp_st
07/29/2022, 10:29 AMrp_st
07/29/2022, 10:29 AMGuldberg
07/29/2022, 10:29 AMrp_st
07/29/2022, 10:29 AMGuldberg
07/29/2022, 10:30 AMrp_st
07/29/2022, 10:33 AM