Property 'signIn' does not exist
Solution:Jump to solution
first make sure to config your auth correctly and to do the recomend of destructing the object since i dont exactly know your rules config for that but i recomend this way and also the safest way
```ts
const authClient = createAuthClient({
baseURL: process.env.BETTER_AUTH_URL!,
});...
2 Replies
Solution
first make sure to config your auth correctly and to do the recomend of destructing the object since i dont exactly know your rules config for that but i recomend this way and also the safest way
if this does not work, may be force infer the client like this
and try using singIn if thats work
thanks for your answer