commerce/app/api/auth/[...nextauth].ts
paolosantarsiero 62b725b7d9 fix: build
2024-12-31 12:05:26 +01:00

6 lines
165 B
TypeScript

import { authOptions } from 'lib/auth/config';
import NextAuth from 'next-auth';
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };