λΆνμνκ² baseUrl λΆλΆκ³Ό Headers λΆλΆ μμ±νλ κ²μ λ°©μ§νκ³ μ λΆλ¦¬νμλ€.
μλμ κ°μ νμμΌλ‘ API λͺ μΈλ₯Ό λ³΄κ³ μ½λλ₯Ό μμ±νμλ€.
export const putUserApiInstance: AxiosInstance = axios.create({
baseURL: BASIC_URL + '/user',
headers: {
Authorization: `Bearer ${localStorage.getItem('token')}`,
'Content-type': 'application/json',
},
withCredentials: false,
});
μ μ κ°μ΄ μ¬μ μ λΆλ¦¬λ₯Ό ν΄λλ, μ¬λ¬λ² μμ±ν νμκ° μμ΄μ‘λ€. λν μ€νλ‘ μΈν΄ μ½λκ° μλλμ§ μλ λΆμμ¬λ₯Ό νΌν μμκ² λμλ€.