Files
archived-next-auth/app
Nico Domino cabcdc967f feat: built-in page theme updates (#2788)
Add some very minimal customization to the built-in pages so people might not immediately need to replace them. This way they can customize some things with their brand color and add their company/project logo. We explicitly **do not** want to go overboard styling this page. This is not an authentication component library or Next.js app template!

Example:
```js
export default NextAuth({
  providers: [...],
  jwt: {...},
  theme: {
    colorScheme: 'auto',
    brandColor: '#67b246',
    logo: 'https://company.com/assets/logo.png'
  }
})
```
2021-09-20 00:48:36 +02:00
..
2021-08-15 21:01:56 +02:00
2021-09-04 12:23:22 +02:00
2021-04-21 00:00:57 +02:00

NextAuth.js Development App

This folder contains a Next.js app using NextAuth.js for local development. See the following section on how to start:

Setting up local environment