mirror of
https://github.com/heyman/heynote.git
synced 2024-11-22 16:03:28 +01:00
40 lines
735 B
Plaintext
40 lines
735 B
Plaintext
/**
|
|
* @see https://www.electron.build/configuration/configuration
|
|
*/
|
|
{
|
|
"appId": "com.heynote.app",
|
|
"asar": true,
|
|
//"icon": "public/favicon.ico",
|
|
"directories": {
|
|
"output": "release/${version}",
|
|
"buildResources": "resources"
|
|
},
|
|
"files": [
|
|
"dist-electron",
|
|
"dist"
|
|
],
|
|
"mac": {
|
|
"artifactName": "${productName}_${version}.${ext}",
|
|
"target": [
|
|
"dmg"
|
|
]
|
|
},
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
],
|
|
"artifactName": "${productName}_${version}.${ext}"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"deleteAppDataOnUninstall": false
|
|
}
|
|
}
|