ec2에서 배포이후 로그아웃 안됨.
// server/src/routes/auth.ts const logout = async (_: Request, res: Response) => { res.set( "Set-Cookie", cookie.serialize("token", "", { httpOnly: true, secure: process.env.NODE_ENV === "production", sameSite: "strict", expires: new Date(0), path: "/", }) ) res.status(200).json({ success: true }) } secure: process.env.NODE_ENV === "production", secure가 TRUE면 https로 통신할 경우 쿠키를 주고 받는다는 설정인거 같아요(맞나요??)이거 때문에 AWS 배포시 https 적용도 해주어야 하지만 http일 경우에는 로그아웃이 안되는 문제가 있는 것 같아요.