From 02e94e3f662bd123c446194b94533b3eaece09c3 Mon Sep 17 00:00:00 2001 From: DongHyeonWon Date: Mon, 5 Feb 2024 17:33:53 +0900 Subject: [PATCH] =?UTF-8?q?reset:=20axios=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/apis/index.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frontend/src/apis/index.ts b/frontend/src/apis/index.ts index 9641622..a30cc7a 100644 --- a/frontend/src/apis/index.ts +++ b/frontend/src/apis/index.ts @@ -3,11 +3,6 @@ import axios from "axios"; export const axiosApi = (url: string | undefined) => axios.create({ baseURL: url, - withCredentials: true, - headers: { - "Access-Control-Allow-Origin": "*", - "Access-Control-Allow-Credentials": "true", - }, }); const baseUrl = process.env.NEXT_PUBLIC_BASE_URL;