gaming-hub/electron/forge.config.js
Daniel c86538e2a2 Remove maker-zip from Electron build (only Squirrel needed)
Fix CI: zip binary not available in builder image, and we only
distribute via Squirrel installer anyway.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-07 19:56:35 +01:00

15 lines
258 B
JavaScript

module.exports = {
packagerConfig: {
name: 'Gaming Hub',
executableName: 'gaming-hub',
asar: true,
},
makers: [
{
name: '@electron-forge/maker-squirrel',
config: {
name: 'gaming-hub-desktop',
},
},
],
};