How to set axios to set withCredentials:true

how to set axios to set withCredentials:true

May.07,2022

https://github.com/axios/axio...


what does your axios say? Use it directly:

  axios({
        method: 'get', 
        url: 'XXX',  
        withCredentials: true
    })
Menu