0
3
JRJose Romero
nextapihandler
Next TypeScript recipesThe handler()
function exports a function that takes two arguments: req
and res
. The handler()
function sets the res.status()
function call to 200
and returns the result as a JSON object.
Library: next
Shortcut: next.api.handler.create
export default function handler(req, res) {
res.status(200).json({ })
}