tauri.conf.json 1.3 KB

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