Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion template/builder.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ const windowsOS = {
target: 'nsis'
},

// https://www.electron.build/configuration/nsis.html
nsis: {
differentialPackage: true
differentialPackage: true,
allowToChangeInstallationDirectory: false, // set to true if you want allow user choose folder
oneClick: true, // set to false, if you set allowToChangeInstallationDirectory to true
deleteAppDataOnUninstall: false
}
}

Expand Down