Skip to content

Instantly share code, notes, and snippets.

@tpjnorton
Created November 9, 2021 12:15
Show Gist options
  • Save tpjnorton/f4d0e18d77ef78f4280dd7abae783d75 to your computer and use it in GitHub Desktop.
Save tpjnorton/f4d0e18d77ef78f4280dd7abae783d75 to your computer and use it in GitHub Desktop.
Basic API Route for Next.js (From Docs)
export default function handler(req, res) {
res.status(200).json({ name: 'John Doe' })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment