[Vuejs]-Create and save pdf file with electron js

0👍

I had to create a file with the name of vue.config.js with this code to declare the pdfkit library as external to Electron

module.exports = {
  pluginOptions: {
    electronBuilder: {
      nodeIntegration: true,
      externals: ["pdfkit"],
    },
  },
};

Leave a comment