Skip to content

Commit

Permalink
fix: 쿠키 설정 도메인 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JINU-CHANG committed Nov 19, 2024
1 parent 1418467 commit d69d836
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public ResponseCookie deleteRefreshTokenCookie() {
private ResponseCookie deleteCookie(String tokenName, String path) {
return ResponseCookie
.from(tokenName, "")
.domain(domain)
.httpOnly(true)
.secure(true)
.sameSite(sameSite)
Expand Down

0 comments on commit d69d836

Please sign in to comment.