Skip to content

Commit 7e84f2d

Browse files
committed
fix: API 기본 URL을 개발 환경에서 프로덕션 환경으로 변경
1 parent 19b5779 commit 7e84f2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/http.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import axios, { AxiosError, type AxiosRequestConfig } from "axios";
33
const createApiInstance = () => {
44
const instance = axios.create({
55
// TODO: 추후 환경변수로 관리
6-
baseURL: "https://dev-api.holdy.kr",
6+
baseURL: "https://api.holdy.kr",
77
headers: {
88
"Content-Type": "application/json",
99
},

0 commit comments

Comments
 (0)