Skip to content

Commit

Permalink
feat: 베이스 url 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ssoxong committed May 25, 2024
1 parent c93ba26 commit 61b2a6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apis/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const api = axios.create({
})

export const formApi = axios.create({
baseURL: 'http://localhost:5354',
baseURL: process.env.REACT_APP_URL,
headers: {
'Content-Type': 'multipart/form-data',
},
Expand All @@ -29,7 +29,7 @@ export const kakaoAPI = axios.create({
})

export const authAPI = axios.create({
baseURL: 'http://localhost:5354',
baseURL: process.env.REACT_APP_URL,
headers: {
'Content-Type': 'application/json',
},
Expand Down

0 comments on commit 61b2a6f

Please sign in to comment.