diff options
author | polwex <polwex@sortug.com> | 2025-09-17 21:45:18 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-09-17 21:45:18 +0700 |
commit | 985fa2f7c99832cdf3c3351d2273c8fd05402b78 (patch) | |
tree | bc727486a89ad05e588754f8de8b1096400a3d31 /front/src/logic/api.ts | |
parent | f0df4c7297a05bd592d8717b8997284c80fd0500 (diff) |
basic comms working
Diffstat (limited to 'front/src/logic/api.ts')
-rw-r--r-- | front/src/logic/api.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/front/src/logic/api.ts b/front/src/logic/api.ts index 52635e5..cf44073 100644 --- a/front/src/logic/api.ts +++ b/front/src/logic/api.ts @@ -1,6 +1,6 @@ import Urbit from "urbit-api"; -export const URL = import.meta.env.PROD ? "" : "http://localhost:8080"; +export const URL = import.meta.env.PROD ? "" : "http://localhost:8083"; export async function start(): Promise<Urbit> { const airlock = new Urbit(URL, ""); |