美文网首页
Electron应用压缩

Electron应用压缩

作者: 遨游于学海 | 来源:发表于2023-05-08 11:55 被阅读0次

    Electron的本体打包后就有200多兆,但是使用UPX压缩后可以减小到50多兆,然而,你可能会发现主进程可以运行,但是渲染进程无法运行了。这种情况只要在运行时加上--no-sandbox参数即可,如果不想在运行时加入该参数,则可以在主进程中加上该参数:

    app.commandLine.appendSwitch("no-sandbox");
    

    相关文章

      网友评论

          本文标题:Electron应用压缩

          本文链接:https://www.haomeiwen.com/subject/qgclsdtx.html