Skip to content

Commit

Permalink
feat(config): add more archs for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ysfscream committed Jan 27, 2022
1 parent 994b812 commit 0d28220
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'] },
],
},
},
},
Expand Down

0 comments on commit 0d28220

Please sign in to comment.