본문 바로가기
Frontend/엘리스 SW 엔지니어 트랙

[ 엘리스 SW 엔지니어 트랙 ] 78일차 TL;DR

by YWTechIT 2022. 2. 17.
728x90

📍 78일차 2.17.목. 프로젝트 13일차 TL;DR

  1. cors credentials: HTTP Cookie와 HTTP Authentication 정보를 인식할 수 있게 해주는 요청이다. 클라이언트에서 서버로 요청을 보낸다면 axios.defaults.withCredentials = true;를 꼭!!!@#!@#!@#!@ 설정해주자.
export const AXIOS = axios.create({
  baseURL: serverURL,
  withCredentials: true,
  axiosConfig,
});

app.use(
  cors({
    origin: "http://localhost:1111",
    credentials: true,
  }),
);
  1. /bin/www 파일은 익스프레스의 설정 파일을 가져와 http와 연결하는 작업 (nginx를 붙인다면 이 파일과 연결하면 된다.)
반응형

댓글