Skip to content

Instantly share code, notes, and snippets.

@codeBelt
Last active July 15, 2021 12:44
Show Gist options
  • Save codeBelt/3991a94bbabe15b74f9e30ea8f753bc8 to your computer and use it in GitHub Desktop.
Save codeBelt/3991a94bbabe15b74f9e30ea8f753bc8 to your computer and use it in GitHub Desktop.
export default (req, res) => {
if (req.method === 'POST') {
// Process a POST request
res.status(200).json({ data: 'success' });
} else {
// Handle any other HTTP method
res.status(405).json({ error: `Method '${req.method}' Not Allowed` });
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment