I am using render for my project deployment URLS : frontend.onrender.com & backend.onrender.com
when i try to login i am not able to see the cookie after success login
advanced : { crossSubDomainCookies: {
enabled: true,
domain: ".onrender.com", // Domain with a leading period
},
defaultCookieAttributes: {
secure: true,
httpOnly: true,
sameSite: "none" as const, // Allows CORS-based cookie sharing across subdomains
partitioned: true, // New browser standards will mandate this for foreign cookies }},
#help