Skip to content

Commit 915914e

Browse files
committed
fix(tauri): add missing icon.icns to bundle configuration
Fixes the 'No matching IconType' error when running 'bun run tauri build' on macOS. The .icns file format is required for macOS application bundles but was missing from the icon array in tauri.conf.json. Addresses: #37 (comment)
1 parent b446122 commit 915914e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src-tauri/tauri.conf.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"icons/32x32.png",
3939
"icons/128x128.png",
4040
"icons/128x128@2x.png",
41+
"icons/icon.icns",
4142
"icons/icon.png"
4243
]
4344
}

0 commit comments

Comments
 (0)