tauri.macos.conf.json 894 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "$schema": "../node_modules/@tauri-apps/cli/schema.json",
  3. "tauri": {
  4. "systemTray": {
  5. "iconPath": "icons/tray-icon-mono.ico",
  6. "iconAsTemplate": true
  7. },
  8. "bundle": {
  9. "identifier": "io.github.clash-verge-rev.clash-verge-rev",
  10. "targets": ["app", "dmg", "updater"],
  11. "macOS": {
  12. "frameworks": [],
  13. "minimumSystemVersion": "10.15",
  14. "exceptionDomain": "",
  15. "signingIdentity": null,
  16. "entitlements": null
  17. },
  18. "dmg": {
  19. "background": "images/background.png",
  20. "appPosition": {
  21. "x": 180,
  22. "y": 170
  23. },
  24. "applicationFolderPosition": {
  25. "x": 480,
  26. "y": 170
  27. },
  28. "windowSize": {
  29. "height": 400,
  30. "width": 660
  31. },
  32. "windowPosition": {
  33. "x": 200,
  34. "y": 180
  35. }
  36. }
  37. }
  38. }
  39. }