aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/api/client.ts
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-08-17 16:04:36 +0900
committernsfisis <nsfisis@gmail.com>2025-08-17 16:24:47 +0900
commit7ce06a9fd904a96c92d6383a09cad2ad99f4053d (patch)
tree287fa99a73fe3d96820de0cb88afe3eefddaf647 /frontend/app/api/client.ts
parent2cb998d18de1f5928a3b2c995ab5c2d32f22c898 (diff)
downloadiosdc-japan-2025-albatross-7ce06a9fd904a96c92d6383a09cad2ad99f4053d.tar.gz
iosdc-japan-2025-albatross-7ce06a9fd904a96c92d6383a09cad2ad99f4053d.tar.zst
iosdc-japan-2025-albatross-7ce06a9fd904a96c92d6383a09cad2ad99f4053d.zip
feat: update "PHPerKaigi" to "iOSDC Japan"
Diffstat (limited to 'frontend/app/api/client.ts')
-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 6fa784f..10dc7ef 100644
--- a/frontend/app/api/client.ts
+++ b/frontend/app/api/client.ts
@@ -6,7 +6,7 @@ import type { paths } from "./schema";
const client = createClient<paths>({
baseUrl:
process.env.NODE_ENV === "development"
- ? `http://localhost:8003${API_BASE_PATH}`
+ ? `http://localhost:8004${API_BASE_PATH}`
: `https://t.nil.ninja${API_BASE_PATH}`,
});