Reactjs – Cookies are not being sent in Next JS
I'm using Next JS as a client. Using the js-cookie library I am setting a cookie called FarmId: Cookies.set('FarmId', farmId) In my axios.create I am already setting the withCredentials property to true: const axiosClient = axios.create({ withCredentials: true, baseURL: apiUrl,…