aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-08 14:29:56 +0900
committernsfisis <nsfisis@gmail.com>2025-03-08 14:29:56 +0900
commit9e9e7e685e04d6baac13906c0dd0aa2afd59eefc (patch)
treec08c331e4d5837e97b19f1a5566914c451f32f2c /frontend
parent8a182e517ca0c33da5c0163a6ae9c9470ca9d3a5 (diff)
downloadiosdc-japan-2025-albatross-9e9e7e685e04d6baac13906c0dd0aa2afd59eefc.tar.gz
iosdc-japan-2025-albatross-9e9e7e685e04d6baac13906c0dd0aa2afd59eefc.tar.zst
iosdc-japan-2025-albatross-9e9e7e685e04d6baac13906c0dd0aa2afd59eefc.zip
fix
Diffstat (limited to 'frontend')
-rw-r--r--frontend/app/api/client.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/api/client.ts b/frontend/app/api/client.ts
index 3d8b5dd..25f6c54 100644
--- a/frontend/app/api/client.ts
+++ b/frontend/app/api/client.ts
@@ -6,7 +6,7 @@ const apiClient = createClient<paths>({
baseUrl:
process.env.NODE_ENV === "development"
? "http://localhost:8003/phperkaigi/2025/code-battle/api/"
- : "http://api-server/phperkaigi/2025/code-battle/api/",
+ : "https://t.nil.ninja/phperkaigi/2025/code-battle/api/",
});
export async function apiPostLogin(username: string, password: string) {