0👍
✅
This is not a normal form, Make axios knows that content-type
is multipart/form-data
axios.post(path, data, {
headers: {
'Content-Type': 'multipart/form-data'
}
}).then((response) => {
//
});
Source:stackexchange.com