aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/api
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-27 20:49:34 +0900
committernsfisis <nsfisis@gmail.com>2026-02-27 20:54:21 +0900
commit6eaf36534a7948a95b9a4742d120d3e99f6007d6 (patch)
tree4a7dd703d661e332aaa00fb75eea12fb7399c816 /frontend/app/api
parent6d85a8f97c8c9e086f2f9b8c71fd730bff12af07 (diff)
downloadphperkaigi-2026-albatross-6eaf36534a7948a95b9a4742d120d3e99f6007d6.tar.gz
phperkaigi-2026-albatross-6eaf36534a7948a95b9a4742d120d3e99f6007d6.tar.zst
phperkaigi-2026-albatross-6eaf36534a7948a95b9a4742d120d3e99f6007d6.zip
feat(deploy): re-enable update-submodule workflow
Diffstat (limited to 'frontend/app/api')
-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 db5f8c8..acc1ee9 100644
--- a/frontend/app/api/client.ts
+++ b/frontend/app/api/client.ts
@@ -5,7 +5,7 @@ import type { paths } from "./schema";
const apiOrigin =
import.meta.env.VITE_API_BASE_URL ??
- (import.meta.env.DEV ? "http://localhost:8004" : "");
+ (import.meta.env.DEV ? "http://localhost:8007" : "");
const client = createClient<paths>({
baseUrl: `${apiOrigin}${API_BASE_PATH}`,