Electron create MSI installer using electron-builder

后端 未结 5 1585
无人及你
无人及你 2021-02-13 00:24

I managed to create an .exe installer for windows using electron builder, I create 2 package.json as pointed out in the docs :

https://github.com/electron-userland/elec

5条回答
  •  情深已故
    2021-02-13 00:44

    I figured it out by looking at the target. do this

    "win": {
      "target": [
       "msi"
       ]
    //your code here
    },
    

提交回复
热议问题