Problem and Solutions
Problem while Uploading File in Mongo via Multer, NodeJS
By M.K. Verma · 2 May 2022

ou append only the file name to your form:
fd.append("articleImage", file.name);
but you must append the entire file object:
fd.append("articleImage", file);