tauri.conf.json 1.4 KB

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