Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save WoolDoughnut310/3d7fb0e867c08a2a28192c8d51d83fbb to your computer and use it in GitHub Desktop.
Save WoolDoughnut310/3d7fb0e867c08a2a28192c8d51d83fbb 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