Skip to content

Commit 2a85676

Browse files
committed
fix: 쿠키 삭제 도메인 추가
1 parent 6b93799 commit 2a85676

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/example/log4u/common/util/CookieUtil.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public static void deleteCookie(HttpServletResponse response, String name) {
3131
cookie.setPath("/");
3232
cookie.setHttpOnly(true);
3333
cookie.setSecure(true);
34+
cookie.setDomain("log4u.site");
3435
response.addCookie(cookie);
3536
}
3637

0 commit comments

Comments
 (0)