Skip to content

Commit bf579f5

Browse files
authored
πŸ› Fix: 배포 env λ°±μ—”λ“œ API μˆ˜μ • (#91)
1 parent 77e91fb commit bf579f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

β€Žsrc/shared/constants/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const CLIENT_SIDE_URL =
2-
process.env.NEXT_PUBLIC_STAGE === 'production' ? 'https://api.somewhere' : `https://api-dev.even-took.com`;
2+
process.env.NEXT_PUBLIC_STAGE === 'production' ? 'https://api-dev.even-took.com' : `https://api-dev.even-took.com`;
33

44
export const SERVER_SIDE_URL =
5-
process.env.NEXT_PUBLIC_STAGE === 'production' ? 'https://backend.somewhere' : `https://api-dev.even-took.com`;
5+
process.env.NEXT_PUBLIC_STAGE === 'production' ? 'https://api-dev.even-took.com' : `https://api-dev.even-took.com`;

0 commit comments

Comments
Β (0)