tauri.conf.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "build": {
  3. "beforeDevCommand": "",
  4. "beforeBuildCommand": "",
  5. "devPath": "html",
  6. "distDir": "html",
  7. "withGlobalTauri": true
  8. },
  9. "package": {
  10. "productName": "rustdesk_server",
  11. "version": "0.1.1"
  12. },
  13. "tauri": {
  14. "allowlist": {
  15. "all": false,
  16. "fs": {
  17. "scope": [
  18. "$RESOURCE/bin/.env",
  19. "$RESOURCE/logs/*"
  20. ],
  21. "all": false,
  22. "exists": true,
  23. "readDir": true,
  24. "readFile": true,
  25. "writeFile": true
  26. },
  27. "path": {
  28. "all": true
  29. },
  30. "shell": {
  31. "all": false,
  32. "open": true
  33. }
  34. },
  35. "bundle": {
  36. "active": true,
  37. "category": "DeveloperTool",
  38. "copyright": "",
  39. "deb": {
  40. "depends": []
  41. },
  42. "externalBin": [],
  43. "icon": [
  44. "icons/32x32.png",
  45. "icons/128x128.png",
  46. "icons/128x128@2x.png",
  47. "icons/icon.icns",
  48. "icons/icon.ico"
  49. ],
  50. "identifier": "rustdesk_server",
  51. "longDescription": "",
  52. "macOS": {
  53. "entitlements": null,
  54. "exceptionDomain": "",
  55. "frameworks": [],
  56. "providerShortName": null,
  57. "signingIdentity": null
  58. },
  59. "resources": [],
  60. "shortDescription": "",
  61. "targets": "all",
  62. "windows": {
  63. "certificateThumbprint": null,
  64. "digestAlgorithm": "sha256",
  65. "timestampUrl": ""
  66. }
  67. },
  68. "security": {
  69. "csp": null
  70. },
  71. "systemTray": {
  72. "iconPath": "icons/icon.ico",
  73. "iconAsTemplate": true
  74. },
  75. "updater": {
  76. "active": false
  77. },
  78. "windows": [
  79. {
  80. "center": true,
  81. "fullscreen": false,
  82. "height": 600,
  83. "resizable": true,
  84. "title": "RustDesk Server",
  85. "width": 980
  86. }
  87. ]
  88. }
  89. }