mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-10 12:57:47 +00:00
Related to https://github.com/vercel/docs/pull/2047 - The Next.js docs page will mention features from 9.5, but the current starter is quite outdated.
7 lines
168 B
JavaScript
7 lines
168 B
JavaScript
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
|
|
|
export default (req, res) => {
|
|
res.statusCode = 200
|
|
res.json({ name: 'John Doe' })
|
|
}
|