Files
techtracker/convex/auth.ts
2025-08-29 16:41:24 -05:00

7 lines
207 B
TypeScript

import { convexAuth } from '@convex-dev/auth/server';
import { Password } from './CustomPassword';
export const { auth, signIn, signOut, store, isAuthenticated } = convexAuth({
providers: [Password],
});