Skip to content

Commit

Permalink
fix: baseURL 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
uiop5809 committed Nov 7, 2024
1 parent 63bb41f commit afb9697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apis/AxiosInstance.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const token = tokenString ? JSON.parse(tokenString) : null;
const Axios = axios.create({

// eslint-disable-next-line no-undef
baseURL: "http://localhost:8080/api",
// baseURL: import.meta.env.VITE_BASE_URL,
// baseURL: "http://localhost:8080/api",
baseURL: import.meta.env.VITE_BASE_URL,
withCredentials: true,

headers: {
Expand Down

0 comments on commit afb9697

Please sign in to comment.