mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
- Cleans up logging. Logs are now color-coded, added more debug logs, and errors can include some simple metadata (like provider id) to know which provider caused an issue. - All errors are exposed via `@auth/core/errors`. Each error has a URL like: https://errors.authjs.dev#errorcode in the terminal, which points to the documentation explaining the problem in detail, suggesting a fix. - Added a bunch of documentation that autogenerates the pages under https://authjs.dev/reference/core/modules/main - Renames `AuthHandler` to `Auth` and `AuthOptions` to `AuthConfig` - Throwing an error in `signIn` callback will now be caught as a general error and will redirect to `/error?error=Configuration`. If the callback returns `false`, it will redirect to `/error?error=AccessDenied`.
222 lines
6.0 KiB
JavaScript
222 lines
6.0 KiB
JavaScript
const fs = require("fs")
|
|
const path = require("path")
|
|
|
|
// list providers entries from @auth/core/providers/*.ts
|
|
const coreSrc = "../packages/core/src"
|
|
const providers = fs
|
|
.readdirSync(path.join(__dirname, coreSrc, "/providers"))
|
|
.filter((file) => file.endsWith(".ts") && !file.startsWith("oauth"))
|
|
.map((p) => `${coreSrc}/providers/${p}`)
|
|
|
|
const typedocConfig = require("./typedoc.json")
|
|
delete typedocConfig.$schema
|
|
|
|
/** @type {import("@docusaurus/types").Config} */
|
|
module.exports = {
|
|
title: "Auth.js",
|
|
tagline: "Authentication for the Web.",
|
|
url: "https://authjs.dev",
|
|
baseUrl: "/",
|
|
favicon: "img/favicon.ico",
|
|
trailingSlash: false,
|
|
organizationName: "nextauthjs",
|
|
projectName: "next-auth",
|
|
// TODO: remove this once ready
|
|
onBrokenLinks: "log",
|
|
themeConfig: {
|
|
prism: {
|
|
theme: require("prism-react-renderer/themes/nightOwl"),
|
|
magicComments: [
|
|
{
|
|
className: "theme-code-block-highlighted-line",
|
|
line: "highlight-next-line",
|
|
block: { start: "highlight-start", end: "highlight-end" },
|
|
},
|
|
],
|
|
},
|
|
algolia: {
|
|
appId: "OUEDA16KPG",
|
|
apiKey: "97c0894508f2d1d4a2fef4fe6db28448",
|
|
indexName: "next-auth",
|
|
searchParameters: {},
|
|
},
|
|
navbar: {
|
|
title: "Auth.js",
|
|
logo: {
|
|
alt: "Auth.js Logo",
|
|
src: "img/logo/logo-xs.png",
|
|
},
|
|
items: [
|
|
{
|
|
to: "/getting-started/introduction",
|
|
activeBasePath: "/getting-started/",
|
|
label: "Getting started",
|
|
position: "left",
|
|
},
|
|
{
|
|
to: "/guides/overview",
|
|
activeBasePath: "/guides",
|
|
label: "Guides",
|
|
position: "left",
|
|
},
|
|
{
|
|
to: "/reference/core/modules/main",
|
|
// TODO: change to this when the overview page looks better.
|
|
// to: "/reference",
|
|
activeBasePath: "/reference",
|
|
label: "Reference",
|
|
position: "left",
|
|
},
|
|
{
|
|
to: "/concepts/faq",
|
|
activeBasePath: "/concepts",
|
|
label: "Concepts",
|
|
position: "left",
|
|
},
|
|
{
|
|
type: "docsVersionDropdown",
|
|
position: "right",
|
|
dropdownActiveClassDisabled: true,
|
|
dropdownItemsAfter: [
|
|
{
|
|
to: "https://github.com/nextauthjs/next-auth/releases",
|
|
label: "All Releases",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
to: "https://www.npmjs.com/package/next-auth",
|
|
label: "npm",
|
|
position: "right",
|
|
},
|
|
{
|
|
to: "https://github.com/nextauthjs/next-auth",
|
|
label: "GitHub",
|
|
position: "right",
|
|
},
|
|
],
|
|
},
|
|
announcementBar: {
|
|
id: "new-major-announcement",
|
|
content:
|
|
"<a target='_blank' rel='noopener noreferrer' href='https://next-auth.js.org'>NextAuth.js</a> is becoming Auth.js! 🎉 We're creating Authentication for the Web. Everyone included. Starting with SvelteKit, check out the docs <a href='/reference/sveltekit'>here</a>.",
|
|
backgroundColor: "#000",
|
|
textColor: "#fff",
|
|
},
|
|
footer: {
|
|
links: [
|
|
{
|
|
title: "About Auth.js",
|
|
items: [
|
|
{
|
|
label: "Introduction",
|
|
to: "/getting-started/introduction",
|
|
},
|
|
{
|
|
html: `
|
|
<a target="_blank" rel="noopener noreferrer" href="https://vercel.com?utm_source=nextauthjs&utm_campaign=oss">
|
|
<img
|
|
alt="Powered by Vercel"
|
|
style="margin-top: 8px"
|
|
height="32"
|
|
src="https://raw.githubusercontent.com/nextauthjs/next-auth/main/docs/static/img/powered-by-vercel.svg"
|
|
/>
|
|
</a>`,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Download",
|
|
items: [
|
|
{
|
|
label: "GitHub",
|
|
to: "https://github.com/nextauthjs/next-auth",
|
|
},
|
|
{
|
|
label: "NPM",
|
|
to: "https://www.npmjs.com/package/next-auth",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Acknowledgements",
|
|
items: [
|
|
{
|
|
label: "Contributors",
|
|
to: "/contributors",
|
|
},
|
|
{
|
|
label: "Sponsors",
|
|
to: "https://opencollective.com/nextauth",
|
|
},
|
|
{
|
|
label: "Images by unDraw",
|
|
to: "https://undraw.co/",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
copyright: `Auth.js © Balázs Orbán ${new Date().getFullYear()}`,
|
|
},
|
|
colorMode: {
|
|
respectPrefersColorScheme: true,
|
|
},
|
|
docs: {
|
|
sidebar: {
|
|
autoCollapseCategories: true,
|
|
},
|
|
},
|
|
},
|
|
presets: [
|
|
[
|
|
"@docusaurus/preset-classic",
|
|
{
|
|
docs: {
|
|
breadcrumbs: false,
|
|
routeBasePath: "/",
|
|
sidebarPath: require.resolve("./sidebars.js"),
|
|
editUrl: "https://github.com/nextauthjs/next-auth/edit/main/docs",
|
|
lastVersion: "current",
|
|
showLastUpdateAuthor: true,
|
|
showLastUpdateTime: true,
|
|
remarkPlugins: [
|
|
require("@sapphire/docusaurus-plugin-npm2yarn2pnpm").npm2yarn2pnpm,
|
|
require("remark-github"),
|
|
require("mdx-mermaid"),
|
|
],
|
|
versions: {
|
|
current: {
|
|
label: "experimental",
|
|
},
|
|
},
|
|
},
|
|
theme: {
|
|
customCss: require.resolve("./src/css/index.css"),
|
|
},
|
|
},
|
|
],
|
|
],
|
|
plugins: [
|
|
[
|
|
"docusaurus-plugin-typedoc",
|
|
{
|
|
...typedocConfig,
|
|
plugin: ["./tyepdoc"],
|
|
entryPoints: [
|
|
"index.ts",
|
|
"adapters.ts",
|
|
"errors.ts",
|
|
"jwt.ts",
|
|
"types.ts",
|
|
]
|
|
.map((e) => `${coreSrc}/${e}`)
|
|
.concat(providers),
|
|
tsconfig: "../packages/core/tsconfig.json",
|
|
out: "reference/03-core",
|
|
watch: process.env.TYPEDOC_WATCH,
|
|
includeExtension: false,
|
|
},
|
|
],
|
|
],
|
|
}
|