diff --git a/vue.config.js b/vue.config.js index e3636cbf..d931ffaa 100644 --- a/vue.config.js +++ b/vue.config.js @@ -17,7 +17,16 @@ module.exports = { provider: 'github', vPrefixedTagName: false, // default: true releaseType: 'release' // or "draft" (default), "prerelease" - }] + }], + mac: { // https://www.electron.build/configuration/mac + target: 'dmg', + }, + win: { // https://www.electron.build/configuration/win + target: 'nsis', + }, + linux: { // https://www.electron.build/configuration/linux + target: 'AppImage', + } } } }