Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
config
Browse files Browse the repository at this point in the history
  • Loading branch information
delebash committed Jul 9, 2022
1 parent 128e2e0 commit b0088b0
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions quasar.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,25 @@ module.exports = configure(function (/* ctx */) {
// Windows only
// win32metadata: { ... }
},

builder: {
// https://www.electron.build/configuration/configuration

appId: 'unreal-mapbox-bridge'
appId: 'unreal-mapbox-bridge',
publish: {
'provider': 'github'
},
win: {// configuration parameters of installation software under Windows
target: [
"NSIS", // package as NSIS installation file
"Zip" // package as the installation file zip
]
},
nsis: {// NSIS configuration parameters
oneClick: false, // click to open
deleteAppDataOnUninstall: true,
allowToChangeInstallationDirectory: true, // allows the user to choose the installation location
perMachine: true
}
}
},

Expand Down

0 comments on commit b0088b0

Please sign in to comment.