I\'m using Axios while programing in ReactJS and I pretend to send a DELETE request to my server.
To do so I need the headers:
headers: { \'Authori
For Delete, you will need to do as per the following
axios.delete("/", { data:<"payload object">})
It worked for me.