chad/server/auth/lucia.ts
Никита Круглицкий 7b4be60099
Some checks failed
Deploy / deploy (push) Failing after 9s
server
2025-10-09 23:51:17 +06:00

8 lines
289 B
TypeScript

import { PrismaAdapter } from '@lucia-auth/adapter-prisma'
import { Lucia } from 'lucia'
import prisma from '../prisma/client'
export const auth = new Lucia<object, { username: string, displayName: string }>(new PrismaAdapter(prisma.session, prisma.user))
export type Auth = typeof auth