This commit is contained in:
ro1net 2026-08-16 01:53:10 -04:00 committed by GitHub
commit c7c83854fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

2
assets

@ -1 +1 @@
Subproject commit bd432f2298901a8566a092636eef0c35a3a80fbc
Subproject commit 1e7f9990c29315f3f55acb7a420dabb6b4db1d9d

View File

@ -124,7 +124,9 @@ const config: ForgeConfig = {
asar: true,
name: STRINGS.name,
executableName: STRINGS.execName,
icon: `${ASSET_DIR}/icon`,
icon: process.platform === "darwin"
? `${ASSET_DIR}/icon.icon`
: `${ASSET_DIR}/icon`,
// extraResource: [
// // include all the asset files
// ...globSync(ASSET_DIR + "/**/*"),