From 88930abadc0a481708ce94d3f4cc6d3733dd3310 Mon Sep 17 00:00:00 2001 From: Paul Bernier Date: Sun, 21 Apr 2019 16:29:02 -0700 Subject: [PATCH] build: make build targets explicit --- vue.config.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vue.config.js b/vue.config.js index cd3ebec..93b1127 100644 --- a/vue.config.js +++ b/vue.config.js @@ -6,13 +6,17 @@ module.exports = { productName: 'FAT Wallet', linux: { category: 'Utility', - target: ['deb', 'zip', 'AppImage'] + target: ['deb', 'AppImage'] }, appImage: { license: 'LICENSE.md' }, mac: { - category: 'public.app-category.finance' + category: 'public.app-category.finance', + target: ['dmg'] + }, + win: { + target: ['nsis'] } } }