All checks were successful
Publish Docker Image / Publish Docker Image (push) Successful in 39s
10 lines
239 B
TypeScript
Executable File
10 lines
239 B
TypeScript
Executable File
import { createDbAuthClient, createAuth } from '@redwoodjs/auth-dbauth-web'
|
|
|
|
const dbAuthClient = createDbAuthClient({
|
|
fetchConfig: {
|
|
credentials: 'include',
|
|
},
|
|
})
|
|
|
|
export const { AuthProvider, useAuth } = createAuth(dbAuthClient)
|