feat: NextAuth credentials + JWT 8h + rate limiting

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-07 00:05:14 +02:00
parent 2acf899465
commit f9a14b009a
5 changed files with 156 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import NextAuth from 'next-auth'
import { authOptions } from '@/lib/auth'
const handler = NextAuth(authOptions)
export { handler as GET, handler as POST }