I have a web app that makes use of a couple cookies that each have the domain property: ".vibecompass.com"
The cookies are shared across several sub-domains (de.vibe.... & es.vibe... etc.)
I'm loading all my static assets from this subdomain: "www.vibecompass.com" I do this essentially because I'm using cloudflare to auto-minify and gzip (plus act as a CDN) my js & css files. But of course, my session cookies are being sent with every request which is inefficient.
Will a cookie that has the following domain: ".vibecompass.com"
be sent by a browser for http requests to: "staticassets.www.vibecompass.com"
This would be a lot more convenient that using a different TLD in my situation.