From 2316e3fb6867e5d765eafcf675b77f88bd2a0f52 Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Tue, 19 Jan 2021 06:51:09 +0100 Subject: [PATCH] specify desktop publish targets as defaults (may) change --- vue.config.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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', + } } } }