我有项目(https://github.com/Gordienko-RU/plant-log)的问题,dist文件夹中的角度束和电子文件夹中的电子主文件,但是用电子生成器打包后,应用程序不运行。 我想我的配置在package.json
中存在一些问题答案 0 :(得分:0)
好的,我和电子打包机有类似的问题。我尝试了你的package.json并做了一个" npm install"。对我来说,你的构建看起来确实包含原生插件(* .node)。
在electron-packager中,解决方案是添加asar unpack选项。您正在使用电子建设者。因此,您应该查看此主题:https://github.com/electron-userland/electron-builder/issues/390。也许您需要手动指定模块,例如:
"asar": true,
"asarUnpack": [
"../node_modules/uws"
]