Skip to content

Commit 3bbe228

Browse files
committed
fix: frontend base url 수정
1 parent a66c093 commit 3bbe228

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

frontend/src/services/api.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ export interface ErrorResponse {
1515
path?: string;
1616
}
1717

18-
const API_BASE_URL = import.meta.env.VITE_API_BASE_URL || 'http://localhost:8080';
19-
const baseURL = `${API_BASE_URL}/api/v1`;
18+
const baseURL = import.meta.env.VITE_API_BASE_URL || 'http://localhost:8080/api/v1';
2019

2120
const apiClient = axios.create({
2221
baseURL,

0 commit comments

Comments
 (0)