Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save WoolDoughnut310/0b4e4600dca6b7a2b3090776e24d2fb8 to your computer and use it in GitHub Desktop.
Save WoolDoughnut310/0b4e4600dca6b7a2b3090776e24d2fb8 to your computer and use it in GitHub Desktop.
export const method2 = (
req: NextApiRequest | IncomingMessage,
res: NextApiResponse | Response
) => {
// @ts-ignore
const form = formidable({ fileWriteStreamHandler: uploadStream });
form.parse(req, () => {
res.status(200).json("File upload complete");
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment