2023.06.27 - [Front-End/Library] - Library] Axios ์ด์ Axios๊ธ์ ๊ธฐ๋ฐ์ผ๋ก ๋ง์ง๋ง ์ฝ๋ฉํธ์ ๋ฌ์๋ ๋ด์ฉ๋ค์ ๋ค๋ค๋ณด๋ ค๊ณ ํฉ๋๋ค. ๋์์์ฒญ axios .all([axios.get(), axios.get(), req3...]) .then(axios.spread((res1, res2, res3, res4) => { // ์์ฒญ ์ฑ๊ณตํ์ ๋ }) ) ํ ๋ฒ์ ์ฌ๋ฌ ๊ฐ์ ๋ฐ์ดํฐ๋ฅผ ๊ฐ๊ณ ์ค๊ณ ์ถ์ ๋ ์ฌ์ฉํ๋ฉด ๋ ๋ฏํฉ๋๋ค. Instance const axiosInstance = () => { const instance = axios.create({ baseURL: 'http://localhost:3000/account', withCredentials: true, xsrfCoo..