taxonomy/pages/api/auth/[...nextauth].ts

6 lines
131 B
TypeScript
Raw Permalink Normal View History

2022-11-07 12:37:47 +00:00
import NextAuth from "next-auth"
import { authOptions } from "@/lib/auth"
2022-10-26 13:18:06 +00:00
2022-11-07 12:37:47 +00:00
// @see ./lib/auth
2022-10-26 13:18:06 +00:00
export default NextAuth(authOptions)