38 lines
889 B
JavaScript
38 lines
889 B
JavaScript
module.exports = {
|
|
appId: 'ru.club.launcher',
|
|
productName: 'ClubLauncher',
|
|
executableName: 'ClubLauncher',
|
|
copyright: 'Copyright © 2026',
|
|
directories: {
|
|
output: 'dist-build',
|
|
buildResources: 'resources',
|
|
},
|
|
files: [
|
|
'out/**/*',
|
|
],
|
|
win: {
|
|
target: [
|
|
{ target: 'msi', arch: ['x64'] },
|
|
{ target: 'nsis', arch: ['x64'] },
|
|
],
|
|
forceCodeSigning: false,
|
|
signingHashAlgorithms: null,
|
|
sign: null,
|
|
},
|
|
msi: {
|
|
createDesktopShortcut: true,
|
|
createStartMenuShortcut: true,
|
|
shortcutName: 'Club Launcher',
|
|
},
|
|
nsis: {
|
|
oneClick: false,
|
|
allowToChangeInstallationDirectory: true,
|
|
installerIcon: 'resources/icon.ico',
|
|
uninstallerIcon: 'resources/icon.ico',
|
|
installerHeaderIcon: 'resources/icon.ico',
|
|
createDesktopShortcut: true,
|
|
createStartMenuShortcut: true,
|
|
shortcutName: 'Club Launcher',
|
|
},
|
|
}
|