tauri.conf.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "build": {
  3. "beforeDevCommand": "npm run dev",
  4. "beforeBuildCommand": "pnpm 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. "minimumSystemVersion": "10.15.0"
  45. },
  46. "resources": [],
  47. "shortDescription": "",
  48. "targets": "all",
  49. "windows": {
  50. "certificateThumbprint": null,
  51. "digestAlgorithm": "sha256",
  52. "timestampUrl": ""
  53. }
  54. },
  55. "security": {
  56. "csp": null
  57. },
  58. "updater": {
  59. "active": false
  60. },
  61. "windows": [
  62. {
  63. "fullscreen": false,
  64. "height": 1200,
  65. "resizable": true,
  66. "title": "AppFlowy",
  67. "width": 1200
  68. }
  69. ]
  70. }
  71. }