@chagold נדמה לי שבקשות post הרבה יותר נח עם axios
ב- fetch אתה צריך להצהיר באובייקט איזה method אתה מתכוין.
fetch('https://example.com/profile', {
method: 'POST', // or 'PUT'
headers: {
'Content-Type': 'application/json',
},
לעומת זאת ב- axios אתה עושה
axios.post(url)

