42 lines
892 B
Plaintext
42 lines
892 B
Plaintext
/**
|
|
* @see https://www.electron.build/configuration/configuration
|
|
*/
|
|
{
|
|
appId: "YourAppID",
|
|
productName: "YourAppName",
|
|
copyright: "Copyright © 2022 ${author}",
|
|
asar: true,
|
|
directories: {
|
|
output: "release/${version}",
|
|
buildResources: "electron/resources",
|
|
},
|
|
files: [
|
|
"dist-electron",
|
|
"dist"
|
|
],
|
|
win: {
|
|
target: [
|
|
{
|
|
target: "nsis",
|
|
arch: ["x64"],
|
|
},
|
|
],
|
|
artifactName: "${productName}-Windows-${version}-Setup.${ext}",
|
|
},
|
|
nsis: {
|
|
oneClick: false,
|
|
perMachine: false,
|
|
allowToChangeInstallationDirectory: true,
|
|
deleteAppDataOnUninstall: false,
|
|
},
|
|
mac: {
|
|
target: ["dmg"],
|
|
artifactName: "${productName}-Mac-${version}-Installer.${ext}",
|
|
},
|
|
linux: {
|
|
icon: "electron/resources/iconset",
|
|
target: ["AppImage", "deb"],
|
|
artifactName: "${productName}-Linux-${version}.${ext}",
|
|
},
|
|
}
|