1fetch and axios indeed do not send credentials automatically with the request,
2you will have to specify it by setting the "withCredentials" option to true:
3
4axios.get(`api.com/api`, { withCredentials: true })
5 .then((res) => {
6 // code
7 })