mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
* feat(cli): add zero-config support for Next.js * chore: add changeset * feat(cli): add preflight
14 lines
307 B
TypeScript
14 lines
307 B
TypeScript
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
|
import type { NextApiRequest, NextApiResponse } from 'next'
|
|
|
|
type Data = {
|
|
name: string
|
|
}
|
|
|
|
export default function handler(
|
|
req: NextApiRequest,
|
|
res: NextApiResponse<Data>
|
|
) {
|
|
res.status(200).json({ name: 'John Doe' })
|
|
}
|