mirror of
https://github.com/toeverything/AFFiNE.git
synced 2025-01-07 05:16:30 +03:00
25 lines
496 B
JavaScript
25 lines
496 B
JavaScript
module.exports = {
|
|
packagerConfig: {
|
|
name: 'AFFiNE',
|
|
icon: './resources/icons/icon.icns',
|
|
},
|
|
makers: [
|
|
{
|
|
name: '@electron-forge/maker-dmg',
|
|
config: {
|
|
format: 'ULFO',
|
|
icon: './resources/icons/icon.icns',
|
|
name: 'AFFiNE',
|
|
},
|
|
},
|
|
{
|
|
name: '@electron-forge/maker-zip',
|
|
config: {
|
|
name: 'affine',
|
|
iconUrl: './resources/icons/icon.ico',
|
|
setupIcon: './resources/icons/icon.ico',
|
|
},
|
|
},
|
|
],
|
|
};
|