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