Files
vercel__next.js/bench/basic-app/pages/api/page-api.js
Ethan Arrowood a1610fecd8 Fix basic-app benchmark application (#60842)
Fairly basic PR that just fixes the `basic-app` benchmark application.
The api route was throwing an error since it wasn't returning a
`Response`, and renamed some `pages/` directory routes so they become
available.
2024-01-20 20:35:20 -06:00

4 lines
91 B
JavaScript

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