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