johntanzer
johntanzer
Explore posts from servers
BABetter Auth
Created by johntanzer on 3/3/2025 in #help
Basic hook to check col on signin
Hi, If I have a column called active and I want to check when user signs in if active is true or not - how can I do this? Meanwhile have only added email and password auth and added a col called active.
3 replies
BABetter Auth
Created by johntanzer on 1/28/2025 in #help
Type Error - Nuxt 3
Have auth client in lib folder and i get this when importing Cannot find module '/lib/auth-client' or its corresponding type declarations.ts-plugin(2307)
1 replies
BABetter Auth
Created by johntanzer on 1/26/2025 in #help
Better Auth + Vercel Preview Deployements + Nuxt 3
Hi @bekacru spoke to you on X. You said i should tag you.
export const auth = betterAuth({
database: new Pool({
connectionString: useRuntimeConfig().databaseUrl
}),
emailAndPassword: {
enabled: true
},
socialProviders: {
google: {
clientId: useRuntimeConfig().googleClientId,
clientSecret: useRuntimeConfig().googleClientSecret
}
}
})
export const auth = betterAuth({
database: new Pool({
connectionString: useRuntimeConfig().databaseUrl
}),
emailAndPassword: {
enabled: true
},
socialProviders: {
google: {
clientId: useRuntimeConfig().googleClientId,
clientSecret: useRuntimeConfig().googleClientSecret
}
}
})
this is my auth which is in /server/utils/auth and the below is my auth client in lib in root
import { createAuthClient } from 'better-auth/vue'

export const authClient = createAuthClient()

export const {
signIn,
signOut,
signUp,
useSession,
forgetPassword,
resetPassword
} = authClient
import { createAuthClient } from 'better-auth/vue'

export const authClient = createAuthClient()

export const {
signIn,
signOut,
signUp,
useSession,
forgetPassword,
resetPassword
} = authClient
the below is the error i get in vercel preview deployemnts
Unhandled Rejection: TypeError: Invalid URL /get-session. Are you passing in a relative URL but not setting the baseURL?
at getURL2 (file:///var/task/node_modules/@better-fetch/fetch/dist/index.js:455:11)
at betterFetch (file:///var/task/node_modules/@better-fetch/fetch/dist/index.js:502:16)
at async $fetch (file:///var/task/node_modules/@better-fetch/fetch/dist/index.js:236:12)
Node.js process exited with exit status: 128. The logs above can help with debugging the issue.
Unhandled Rejection: TypeError: Invalid URL /get-session. Are you passing in a relative URL but not setting the baseURL?
at getURL2 (file:///var/task/node_modules/@better-fetch/fetch/dist/index.js:455:11)
at betterFetch (file:///var/task/node_modules/@better-fetch/fetch/dist/index.js:502:16)
at async $fetch (file:///var/task/node_modules/@better-fetch/fetch/dist/index.js:236:12)
Node.js process exited with exit status: 128. The logs above can help with debugging the issue.
i dont get it in production since i set betterauthurl env var for prod domain. This has made it almost impossible to use better auth
39 replies
NNuxt
Created by johntanzer on 3/23/2024 in #❓・help
nuxtloading indicator
Hi, anyone have any success in creating composable for nuxt loading indicator that only complets indeicator on route change or error? right now as soon as route has been pushed even if it hasnt been loaded yet it stops loading.
5 replies