Skip to content

Commit 79cf518

Browse files
authored
refactor(graduate): 서버 주소 변경에 따른 수정 (#213)
2 parents 052fa9d + 669c614 commit 79cf518

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

apps/graduate/src/shared/constants/endpoint.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
import type { SubmissionType } from '~/shared/types';
22

33
export const API_URL =
4-
import.meta.env.VITE_API_URL || 'https://aics-api.ummdev.com';
4+
import.meta.env.VITE_API_URL || 'https://aics-api.kgudevelopers.monster';
55

66
export const API_AUTH_URL =
7-
import.meta.env.VITE_AUTH_API_URL || 'https://aics-auth.ummdev.com';
7+
import.meta.env.VITE_AUTH_API_URL ||
8+
'https://aics-auth.kgudevelopers.monster';
89

910
export const API_ADMIN_URL =
10-
import.meta.env.VITE_ADMIN_API_URL || 'https://aics-admin.ummdev.com';
11+
import.meta.env.VITE_ADMIN_API_URL ||
12+
'https://aics-admin.kgudevelopers.monster';
1113

1214
export type EndpointValue<T> = T extends string
1315
? T

0 commit comments

Comments
 (0)