Install dependencies for unbundled usage
mainIf you are using the unbundled dist/html2pdf.min.js (or the un-minified version) instead of NPM, you must manually include jsPDF and html2canvas. The order of inclusion is critical to prevent html2canvas from being overridden by jsPDF's internal implementation.
<script src="jspdf.min.js"></script>
<script src="html2canvas.min.js"></script>
<script src="html2pdf.min.js"></script>