Skip to content

Commit

Permalink
fix: BASE_URL에 protocol 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yeolyi committed Apr 7, 2024
1 parent 7b8f53a commit 56915bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/common.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const BASE_URL =
process.env.NODE_ENV === 'development'
? 'https://cse-dev-waffle.bacchus.io/api/v1'
: 'localhost:8080/api/v1';
: 'https://localhost:8080/api/v1';

export const checkError = (response: Response) => {
if (response.ok) return;
Expand Down

0 comments on commit 56915bc

Please sign in to comment.