let options = { filename: 'file.pdf', html2canvas: { ignoreElements: (element) => { return element.id === 'ignore-div'; }, }, }; html2pdf().set(options).from(document.body).save()
this code works.