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]