mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
import NextAuth from "next-auth";
|
|
import GitHubProvider from "next-auth/providers/github";
|
|
|
|
export default NextAuth({
|
|
providers: [
|
|
GitHubProvider({
|
|
clientId: "df804870b0d11b0779cf",
|
|
clientSecret: "7ef4bbc0957e48e4e6e59c5b5879b3d75d90acc5",
|
|
}),
|
|
],
|
|
});
|