Pro tip: If you’re using fetch(), you gotta explicitly set headers like this:
```
headers: {
'Content-Type': 'application/json'
}
```
Forgot that once and got slapped with http 415 for hours. 😅
```
headers: {
'Content-Type': 'application/json'
}
```
Forgot that once and got slapped with http 415 for hours. 😅
