tauri.conf.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. },
  31. "macOS": {
  32. "frameworks": [],
  33. "exceptionDomain": "",
  34. "signingIdentity": null,
  35. "entitlements": null
  36. },
  37. "windows": {
  38. "certificateThumbprint": null,
  39. "digestAlgorithm": "sha256",
  40. "timestampUrl": ""
  41. }
  42. },
  43. "windows": [
  44. {
  45. "title": "app",
  46. "width": 800,
  47. "height": 600,
  48. "resizable": true,
  49. "fullscreen": false
  50. }
  51. ],
  52. "security": {
  53. "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
  54. }
  55. }
  56. }