Ory Provider
Resources
Setup
Callback URL
https://example.com/api/auth/callback/ory
Environment Variables
AUTH_ORY_ID
AUTH_ORY_SECRET
Configuration
/auth.ts
import NextAuth from "next-auth"
import Ory from "next-auth/providers/ory"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Ory],
})