thirdweb-auth-next
thirdweb-auth-next copied to clipboard
How to use this with next auth?
Previously, the implementation was something like:
import {
ThirdwebAuthProvider
} from "@thirdweb-dev/auth/next-auth";
export default {
providers: [
ThirdwebAuthProvider({
domain: process.env.NEXT_PUBLIC_THIRDWEB_AUTH_DOMAIN || "",
}),
]
How to achieve this same behavior with thirdweb/auth?