diff --git a/host/src/bootstrap.tsx b/host/src/bootstrap.tsx index d8105e6..f801b0c 100644 --- a/host/src/bootstrap.tsx +++ b/host/src/bootstrap.tsx @@ -4,6 +4,9 @@ import App from "./App"; import reportWebVitals from "./reportWebVitals"; import "./index.css"; import { BrowserRouter } from "react-router-dom"; +import axios from "axios"; +axios.defaults.baseURL = "http://localhost:8123"; // 임시 서버 +axios.defaults.withCredentials = true; const root = ReactDOM.createRoot( document.getElementById("root") as HTMLElement