chore: test mdx v2 and CodeHike Scrollycoding

This commit is contained in:
ndom91
2022-06-06 23:50:05 +02:00
parent 81afeef194
commit 0ef78aa417
9 changed files with 13156 additions and 8 deletions

View File

@@ -228,7 +228,7 @@ The email provider requires a database, it cannot be used without one.
| type | Type of provider, in this case `email` | `"email"` | Yes |
| server | Path or object pointing to the email server | `string` or `Object` | Yes |
| sendVerificationRequest | Callback to execute when a verification request is sent | `(params) => Promise<undefined>` | Yes |
| from | The email address from which emails are sent, default: "<no-reply@example.com>" | `string` | No |
| from | The email address from which emails are sent, default: "no-reply@example.com" | `string` | No |
| maxAge | How long until the e-mail can be used to log the user in seconds. Defaults to 1 day | `number` | No |
## Credentials Provider

View File

@@ -23,7 +23,8 @@ You can use also NextAuth.js with any database using a custom database adapter,
### What authentication services does NextAuth.js support?
<p>NextAuth.js includes built-in support for signing in with&nbsp;
<p>
NextAuth.js includes built-in support for signing in with&nbsp;
{Object.values(require("../../providers.json")).sort().join(", ")}.
(See also: <a href="/configuration/providers/oauth">Providers</a>)
</p>