6 lines
118 B
TypeScript
6 lines
118 B
TypeScript
|
|
import NextAuth from "next-auth";
|
||
|
|
|
||
|
|
export const { handlers, signIn, signOut, auth } = NextAuth({
|
||
|
|
providers: [],
|
||
|
|
});
|