2022-04-11 10:47:24 +08:00
|
|
|
/**
|
|
|
|
* @see https://www.electron.build/configuration/configuration
|
|
|
|
*/
|
2022-04-09 23:40:30 +08:00
|
|
|
{
|
2022-12-22 11:31:38 +08:00
|
|
|
"appId": "YourAppID",
|
|
|
|
"asar": true,
|
|
|
|
"directories": {
|
|
|
|
"output": "release/${version}"
|
2022-04-09 23:40:30 +08:00
|
|
|
},
|
2022-12-22 11:31:38 +08:00
|
|
|
"files": [
|
2022-10-03 10:43:13 +08:00
|
|
|
"dist-electron",
|
|
|
|
"dist"
|
|
|
|
],
|
2022-12-22 11:31:38 +08:00
|
|
|
"mac": {
|
|
|
|
"artifactName": "${productName}_${version}.${ext}",
|
|
|
|
"target": [
|
2023-03-12 09:35:20 +08:00
|
|
|
"dmg",
|
|
|
|
"zip"
|
2022-12-22 11:31:38 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"win": {
|
|
|
|
"target": [
|
2022-04-09 23:40:30 +08:00
|
|
|
{
|
2022-12-22 11:31:38 +08:00
|
|
|
"target": "nsis",
|
|
|
|
"arch": [
|
|
|
|
"x64"
|
|
|
|
]
|
|
|
|
}
|
2022-04-09 23:40:30 +08:00
|
|
|
],
|
2022-12-22 11:31:38 +08:00
|
|
|
"artifactName": "${productName}_${version}.${ext}"
|
2022-06-07 02:21:10 +08:00
|
|
|
},
|
2022-12-22 11:31:38 +08:00
|
|
|
"nsis": {
|
|
|
|
"oneClick": false,
|
|
|
|
"perMachine": false,
|
|
|
|
"allowToChangeInstallationDirectory": true,
|
|
|
|
"deleteAppDataOnUninstall": false
|
2023-03-12 09:35:20 +08:00
|
|
|
},
|
2023-03-15 09:20:30 +08:00
|
|
|
"publish": {
|
|
|
|
"provider": "generic",
|
|
|
|
"channel": "latest",
|
|
|
|
"url": "https://github.com/electron-vite/electron-vite-react/releases/download/v0.9.9/"
|
2022-12-22 11:31:38 +08:00
|
|
|
}
|
2023-03-15 09:20:30 +08:00
|
|
|
}
|