From 0d28220f68c45accff68720f23b8901545e3feb4 Mon Sep 17 00:00:00 2001 From: YuShifan <894402575bt@gmail.com> Date: Thu, 27 Jan 2022 10:25:54 +0800 Subject: [PATCH] feat(config): add more archs for linux --- vue.config.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/vue.config.js b/vue.config.js index dfbf5dab4..b7f2d9f46 100644 --- a/vue.config.js +++ b/vue.config.js @@ -88,7 +88,13 @@ module.exports = { }, linux: { icon: './public/icons/app.png', - target: ['AppImage', 'deb', 'rpm', 'snap'], + // 'AppImage', 'deb', 'rpm', 'snap' + target: [ + { target: 'AppImage', arch: ['x64', 'arm64'] }, + { target: 'deb', arch: ['x64', 'arm64'] }, + { target: 'rpm', arch: ['x64', 'arm64'] }, + { target: 'snap', arch: ['x64'] }, + ], }, }, },