Search code examples
jspdf

error while getting the jspdf npm package : GET https://unpkg.com/jspdf@2.0.0/dist/jspdf.min.js net::ERR_ABORTED 404


I get a network error 404 when i upload the package with the line bellow

<script src="https://unpkg.com/jspdf@latest/dist/jspdf.min.js"></script>

i've been using this package for more then 6 months now but it's the first time i get this issue with it.

thanks for your help


Solution

  • I fixed the issue by rolling back to the previous version of the jspdf package :

    <script src="https://unpkg.com/jspdf@1.5.3/dist/jspdf.min.js"></script>

    the new version don't work even if i add it with the version number not (@latest)

    <script src="https://unpkg.com/jspdf@2.0.0/dist/jspdf.min.js"></script>