李恒道 发表于 2022-10-8 21:19:52

electron 打包后Cannot find module 'node-xlsx'

参考https://juejin.cn/post/7043609907739754527
在vue.config.js
声明externals对应的依赖
```
pluginOptions: {
    electronBuilder: {
      // List native deps here if they don't work
      externals: ["node-xlsx"],
      // If you are using Yarn Workspaces, you may have multiple node_modules folders
      // List them all here so that VCP Electron Builder can find them
      nodeModulesPath: ["../../node_modules", "./node_modules"],
    },
},
```
页: [1]
查看完整版本: electron 打包后Cannot find module 'node-xlsx'