jsPDF - Importing fonts in React.js / ES6 style
问题 I am trying to add a font in jsPDF in my React project. I converted the font to base64 and to a .js script using the provided generator at: https://rawgit.com/MrRio/jsPDF/master/fontconverter/fontconverter.html I import the font script as: import '../../assets/fonts/js/Muli-normal'; where Muli-normal is the converted Muli-normal.js file from Muli.ttf using the generator. I set the font with doc.setFont('Muli') but I get the error Line 10:5: 'jsPDF' is not defined no-undef The script is as