aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/api/client.ts
diff options
context:
space:
mode:
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}`,
});