[Vuejs]-Can't Access or Delete Cookie sent from Express in Client

0👍

Turns out the issue was with NGINX. www.mydomain.com and mydomain.com were both serving the same webpage. Cookies are tied to their domain and technically www.mydomain.com is different from mydomain.com. Added server blocks to my website config in NGINX to forward all traffic to www.mydomain.com to mydomain.com.

Leave a comment