react에서 요청할 때
axios
.post("http://localhost:8123/users/login", { id, password },{ withCredentials: true })
.then((res) => {
{withCredentials: true} 옵션을 주니까 브라우저에서도 쿠키를 읽을 수 있었다.
물론 서버에서도
app.use(cors({
origin: 'http://localhost:3000', // 클라이언트의 도메인을 적어주세요
credentials: true, // 쿠키를 포함한 요청을 허용합니다.
}));
origin과 credentials 옵션을 다음처럼 설정했었다.