fix: update SameSite cookie attribute to 'none' for cross-site requests
Build And Push Image / docker (push) Successful in 2m45s Details

This commit is contained in:
Matt 2025-08-07 14:10:33 +02:00
parent eef81d7409
commit fe5aed075f
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ export default defineEventHandler(async (event) => {
setCookie(event, 'monacousa-session', encrypted, {
httpOnly: true,
secure: true,
sameSite: 'lax',
sameSite: 'none',
maxAge,
path: '/',
});