[Answered ]-The current path, api/v1/users, didn’t match any of these

1👍

The trailing slash is important, and it is advisable to always add one to the URL paths, so you make a POST request on:

.post("/api/v1/users/", formData)  // 🖘 trailing slash

Leave a comment