I have a request that I'm making via fetch(url). It doesn't seem like my cookies that I have are being passed along?
What is the canonical way of doing this? Should I pass document.cookie to the fetch request?
You need credentials: 'include' in the init object you pass as the second arg to fetch(…):
fetch(url, { credentials: 'include' })