Next.js 14 App Router application for managing homophone pun game levels: - Better Auth with Prisma adapter for authentication - MySQL database with Prisma ORM - Level CRUD operations with drag-and-drop reordering - Tencent COS integration for image uploads - shadcn/ui components with Tailwind CSS - TanStack Query for server state management
5 lines
140 B
TypeScript
5 lines
140 B
TypeScript
import { auth } from '@/lib/auth'
|
|
import { toNextJsHandler } from 'better-auth/next-js'
|
|
|
|
export const { GET, POST } = toNextJsHandler(auth)
|