mirror of
https://github.com/sern-handler/gui
synced 2026-06-27 18:02:13 +00:00
24 lines
383 B
JavaScript
24 lines
383 B
JavaScript
module.exports = {
|
|
packagerConfig: {
|
|
icon: './icons/icon'
|
|
},
|
|
rebuildConfig: {},
|
|
makers: [
|
|
{
|
|
name: '@electron-forge/maker-squirrel',
|
|
config: {},
|
|
},
|
|
{
|
|
name: '@electron-forge/maker-zip',
|
|
},
|
|
{
|
|
name: '@electron-forge/maker-deb',
|
|
config: {
|
|
options: {
|
|
icon: './icons/icon.png'
|
|
}
|
|
},
|
|
}
|
|
],
|
|
};
|