Skip to content

Commit

Permalink
쿠키 도메인 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
HwangHoYoon committed Jan 20, 2024
1 parent 6a4a081 commit 15a0a9f
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 15a0a9f

Please sign in to comment.