Como faço para o Content-Type do fetch:
fetch(url, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
method: 'post',
body: body
})
ser construído apenas com:
Content-Type: application/x-www-form-urlencoded
e não com:
Content-Type: application/x-www-form-urlencoded; charset=UTF-8