11 lines
221 B
TypeScript
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
|
|
],
|
|
};
|