Skip to content

Commit e2b6740

Browse files
committed
TRIGGER_API_URL defaults to https://api.trigger.dev
1 parent c4dc284 commit e2b6740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/v3/apiClient/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export class ApiClientManager {
9696

9797
get baseURL(): string | undefined {
9898
const store = this.#getStore();
99-
return store?.baseURL ?? getEnvVar("TRIGGER_API_URL");
99+
return store?.baseURL ?? getEnvVar("TRIGGER_API_URL") ?? "https://api.trigger.dev";
100100
}
101101

102102
get accessToken(): string | undefined {

0 commit comments

Comments
 (0)