[Vuejs]-Httponly cookie not saving in browser with Vuejs

0👍

I’ve managed to find a solution to the issue by doing the following:
First I’ve changed access on the server side from all origins being able to come through to only the specific port the Vue app is using. Then I set a header as such

   credentials: "include"

on the request I was sending

Leave a comment