Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: change NextAuth.js to Auth.js #72201

Merged
merged 2 commits into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1642,10 +1642,10 @@ Now that you've learned about authentication in Next.js, here are Next.js-compat

### Auth Libraries

- [Auth.js](https://authjs.dev/getting-started/installation?framework=next.js)
- [Auth0](https://auth0.com/docs/quickstart/webapp/nextjs/01-login)
- [Clerk](https://clerk.com/docs/quickstarts/nextjs)
- [Kinde](https://kinde.com/docs/developer-tools/nextjs-sdk)
- [NextAuth.js](https://authjs.dev/getting-started/installation?framework=next.js)
- [Ory](https://www.ory.sh/docs/getting-started/integrate-auth/nextjs)
- [Stack Auth](https://docs.stack-auth.com/getting-started/setup)
- [Supabase](https://supabase.com/docs/guides/getting-started/quickstarts/nextjs)
Expand Down
2 changes: 1 addition & 1 deletion docs/02-app/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ You can use [`redirect`](/docs/app/api-reference/functions/redirect) to redirect

Here are some common authentication solutions that support the App Router:

- [NextAuth.js](https://next-auth.js.org/configuration/nextjs#in-app-router)
- [Auth.js](https://authjs.dev/getting-started/installation?framework=Next.js)
- [Clerk](https://clerk.com/docs/quickstarts/nextjs)
- [Stack Auth](https://docs.stack-auth.com/getting-started/setup)
- [Auth0](https://github.com/auth0/nextjs-auth0#app-router)
Expand Down
2 changes: 1 addition & 1 deletion examples/auth/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Authentication

This is an example using NextAuth.js for authentication.
This is an example using [Auth.js](https://authjs.dev/) for authentication.

## Deploy your own

Expand Down
2 changes: 1 addition & 1 deletion examples/auth/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import "./globals.css";

export const metadata = {
title: "Next.js Authentication",
description: "Example using NextAuth.js",
description: "Example using Auth.js",
};

export default function RootLayout({
Expand Down
Loading