I am trying to integrate 'next-connect' into my Nextjs app in order to use multer inside of my middleware. I cannot import multer using the Nextjs built-in middleware feature (the one where you create a separate 'middleware.js' file). However, when I try to follow the documentation by importing 'next-connect' with import nextConnect from 'next-connect';
, it says that nextConnect is undefined. 'next-connect' version is '1.0.0-next.2' and 'next' is the latest version. Inside 'pages/api/test.js':
import nextConnect from 'next-connect';
const apiRoute = nextConnect().post(req, res) => {
res.status(200).json({ data: 'success' });
});