Auth.js in a nextjs app
Auth.js is a popular framework for authentication in a NextJS app. The basic configuration is shown below
import NextAuth from "next-auth"
import { PrismaAdapter } from "@auth/prisma-adapter"
import { prisma } from "@/prisma"
import Google from "next...
vijayt.hashnode.dev2 min read