const path = require('path'); module.exports = { packagerConfig: { name: 'Gaming Hub', executableName: 'gaming-hub', icon: path.join(__dirname, 'assets', 'icon'), asar: true, }, makers: [ { name: '@electron-forge/maker-squirrel', config: { name: 'gaming-hub-desktop', setupIcon: path.join(__dirname, 'assets', 'icon.ico'), }, }, { name: '@electron-forge/maker-zip', platforms: ['win32', 'linux', 'darwin'], }, ], };