Skip to content

Commit

Permalink
feat: server url 이관한 것으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
chlwlstlf committed Dec 6, 2024
1 parent a31a810 commit 3e322cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/config/serverUrl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { hostType } from "@/utils/hostType";

const getServerUrl = () => {
if (hostType === "production") {
return "https://api-prod.code-review-area.com";
return "https://prod.code-review-area.com";
}
if (hostType === "release") {
return "https://api.code-review-area.com";
return "https://api-dev.code-review-area.com";
}
return "http://localhost:8080";
};
Expand Down

0 comments on commit 3e322cb

Please sign in to comment.