aboutsummaryrefslogtreecommitdiff
path: root/examples/hello-next/pages/api/hello.tsx
blob: df63de88fa67cb006e692cc789caea580ba3697e (plain) (blame)
1
2
3
4
5
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction

export default function handler(req, res) {
  res.status(200).json({ name: 'John Doe' })
}