mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
a1610fecd8
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.
4 lines
91 B
JavaScript
4 lines
91 B
JavaScript
export default function handler(req, res) {
|
|
res.status(200).json({ name: 'John Doe' })
|
|
}
|