next.js/examples/auth/auth.ts
auth.ts12 lines197 B
import NextAuth from "next-auth";
import GitHub from "next-auth/providers/github";

export const {
  handlers: { GET, POST },
  auth,
  signIn,
  signOut,
} = NextAuth({
  providers: [GitHub],
});
Quest for Codev2.0.0
/
SIGN IN