tauri.conf.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "build": {
  3. "beforeDevCommand": "npm run dev",
  4. "beforeBuildCommand": "npm run build",
  5. "devPath": "http://localhost:1420",
  6. "distDir": "../dist",
  7. "withGlobalTauri": false
  8. },
  9. "package": {
  10. "productName": "AppFlowy",
  11. "version": "0.0.0"
  12. },
  13. "tauri": {
  14. "allowlist": {
  15. "all": false,
  16. "shell": {
  17. "all": false,
  18. "open": true
  19. }
  20. },
  21. "bundle": {
  22. "active": true,
  23. "category": "DeveloperTool",
  24. "copyright": "",
  25. "deb": {
  26. "depends": []
  27. },
  28. "externalBin": [],
  29. "icon": [
  30. "icons/32x32.png",
  31. "icons/128x128.png",
  32. "icons/[email protected]",
  33. "icons/icon.icns",
  34. "icons/icon.ico"
  35. ],
  36. "identifier": "com.appflowy.tauri",
  37. "longDescription": "",
  38. "macOS": {
  39. "entitlements": null,
  40. "exceptionDomain": "",
  41. "frameworks": [],
  42. "providerShortName": null,
  43. "signingIdentity": null
  44. },
  45. "resources": [],
  46. "shortDescription": "",
  47. "targets": "all",
  48. "windows": {
  49. "certificateThumbprint": null,
  50. "digestAlgorithm": "sha256",
  51. "timestampUrl": ""
  52. }
  53. },
  54. "security": {
  55. "csp": null
  56. },
  57. "updater": {
  58. "active": false
  59. },
  60. "windows": [
  61. {
  62. "fullscreen": false,
  63. "height": 1200,
  64. "resizable": true,
  65. "title": "AppFlowy",
  66. "width": 1200
  67. }
  68. ]
  69. }
  70. }