nyx-dashboard/pages/api/auth/[...nextauth].js

17 lines
451 B
JavaScript
Raw Normal View History

2021-11-16 22:52:23 +01:00
import NextAuth from "next-auth";
import Providers from "next-auth/providers";
export default NextAuth({
2021-11-16 22:52:23 +01:00
// Configure one or more authentication providers
providers: [
Providers.Discord({
clientId: process.env.DISCORD_ID,
clientSecret: process.env.DISCORD_SECRET,
}),
// ...add more providers here
],
2021-11-16 22:52:23 +01:00
// A database is optional, but required to persist accounts in a database
database: process.env.DATABASE_URL,
});