Files
diplomarbeitsportal/src/auth.config.ts
2025-03-26 14:20:05 +01:00

11 lines
221 B
TypeScript

// auth.config.ts
import github from "next-auth/providers/github";
import { NextAuthConfig } from 'next-auth'
export const authConfig: NextAuthConfig = {
providers: [
github, // <-- Add your provider here
],
};