tauri.conf.json 1.4 KB

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