Skip to content

Commit

Permalink
sameSite none으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinwoo0207 committed Aug 29, 2024
1 parent 908b289 commit f3a3ced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth/interceptors/cookie.interceptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class CookieInterceptor implements NestInterceptor {
httpOnly: true,
domain: this.configService.get<string>("COOKIE_DOMAIN"),
secure: true,
sameSite: "lax",
sameSite: "none",
maxAge: 1000 * 60 * 60 * 24 * 7, // 7 days
});
}
Expand Down

0 comments on commit f3a3ced

Please sign in to comment.