Skip to content

Commit

Permalink
쿠키 도메인 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
HwangHoYoon committed Jan 17, 2024
1 parent fc80f5c commit 6a4a081
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/chwipoClova/common/utils/JwtUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public void setCookieRefreshToken(HttpServletResponse response, String refreshTo
.maxAge(REFRESH_COOKIE_TIME)
.path("/")
.secure(true)
.domain(domain)
//.domain(domain)
.sameSite("None")
.httpOnly(true)
.build();
Expand Down

0 comments on commit 6a4a081

Please sign in to comment.