Skip to content

Commit

Permalink
chore: comment out EmailAdapter in dev app when no adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Nov 15, 2021
1 parent 898c684 commit 1d3f5a9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions app/pages/api/auth/[...nextauth].ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ export const authOptions: NextAuthOptions = {
providers: [
// E-mail
// Start fake e-mail server with `npm run start:email`
EmailProvider({
server: {
host: "127.0.0.1",
auth: null,
secure: false,
port: 1025,
tls: { rejectUnauthorized: false },
},
}),
// EmailProvider({
// server: {
// host: "127.0.0.1",
// auth: null,
// secure: false,
// port: 1025,
// tls: { rejectUnauthorized: false },
// },
// }),
// Credentials
CredentialsProvider({
name: "Credentials",
Expand Down

0 comments on commit 1d3f5a9

Please sign in to comment.