fix: VITE_API_URL hardcoding that breaks CI E2E (GRO-1280)

fix: resolve VITE_API_URL hardcoding that breaks CI E2E (GRO-1280)
This commit was merged in pull request #415.
This commit is contained in:
the-dogfather-cto[bot]
2026-05-14 20:11:31 +00:00
committed by GitHub
4 changed files with 15 additions and 5 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { createAuthClient } from "better-auth/react";
export const authClient = createAuthClient({
baseURL: import.meta.env.VITE_API_URL ?? "",
baseURL: import.meta.env.VITE_API_URL || window.location.origin,
});
export const { signIn, signOut, useSession, changePassword } = authClient;