fix(tauri): correct bundle.targets schema to array

- Replace per-OS map with array: ["app","dmg","nsis","appimage"].

- Align with Tauri v2 config; resolves schema validation error.

- Keeps Windows portable ("app") target enabled.
This commit is contained in:
Jason
2025-08-26 22:51:22 +08:00
parent f8e39594fa
commit dcf49cc094

View File

@@ -28,7 +28,7 @@
}, },
"bundle": { "bundle": {
"active": true, "active": true,
"targets": "all", "targets": ["app", "dmg", "nsis", "appimage"],
"icon": [ "icon": [
"icons/32x32.png", "icons/32x32.png",
"icons/128x128.png", "icons/128x128.png",