tauri.macos.conf.json 530 B

123456789101112131415161718192021
  1. {
  2. "$schema": "../node_modules/@tauri-apps/cli/schema.json",
  3. "tauri": {
  4. "systemTray": {
  5. "iconPath": "icons/mac-tray-icon.png",
  6. "iconAsTemplate": true,
  7. "menuOnLeftClick": false
  8. },
  9. "bundle": {
  10. "identifier": "io.github.clash-verge-rev.clash-verge-rev",
  11. "targets": ["app", "dmg", "updater"],
  12. "macOS": {
  13. "frameworks": [],
  14. "minimumSystemVersion": "10.15",
  15. "exceptionDomain": "",
  16. "signingIdentity": null,
  17. "entitlements": null
  18. }
  19. }
  20. }
  21. }