17 lines
522 B
TypeScript
17 lines
522 B
TypeScript
import { expoClient } from "@better-auth/expo/client";
|
|
import { env } from "@haushaltsApp/env/native";
|
|
import { createAuthClient } from "better-auth/react";
|
|
import Constants from "expo-constants";
|
|
import * as SecureStore from "expo-secure-store";
|
|
|
|
export const authClient = createAuthClient({
|
|
baseURL: env.EXPO_PUBLIC_SERVER_URL,
|
|
plugins: [
|
|
expoClient({
|
|
scheme: Constants.expoConfig?.scheme as string,
|
|
storagePrefix: Constants.expoConfig?.scheme as string,
|
|
storage: SecureStore,
|
|
}),
|
|
],
|
|
});
|