Skip to content

Commit

Permalink
refactor : 쿠키 도메인 설정 #45
Browse files Browse the repository at this point in the history
  • Loading branch information
strangehoon committed Apr 18, 2024
1 parent fb27d82 commit 77ff6da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public ApiResponse<TokensResponseDto> signUpUser(@RequestBody @Valid SignUpReque
.maxAge(60*60*24*7)
.path("/")
.secure(true)
.sameSite("None")
.domain(".sendback.co.kr")
.httpOnly(true)
.build();
response.setHeader("set-cookie", cookie.toString());
Expand Down

0 comments on commit 77ff6da

Please sign in to comment.