tauri.conf.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "build": {
  3. "distDir": "../public",
  4. "devPath": "http://localhost:8080",
  5. "beforeDevCommand": "yarn dev",
  6. "beforeBuildCommand": "yarn build"
  7. },
  8. "tauri": {
  9. "bundle": {
  10. "active": true,
  11. "targets": "all",
  12. "identifier": "com.tauri.{{ plugin_name }}",
  13. "icon": [
  14. "icons/32x32.png",
  15. "icons/128x128.png",
  16. "icons/128x128@2x.png",
  17. "icons/icon.icns",
  18. "icons/icon.ico"
  19. ],
  20. "resources": [],
  21. "externalBin": [],
  22. "copyright": "",
  23. "category": "DeveloperTool",
  24. "shortDescription": "",
  25. "longDescription": "",
  26. "deb": {
  27. "depends": []
  28. },
  29. "macOS": {
  30. "frameworks": [],
  31. "exceptionDomain": ""
  32. }
  33. },
  34. "allowlist": {
  35. "all": false
  36. },
  37. "windows": [
  38. {
  39. "title": "Tauri App",
  40. "width": 800,
  41. "height": 600,
  42. "resizable": true,
  43. "fullscreen": false
  44. }
  45. ],
  46. "security": {
  47. "csp": "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline'"
  48. }
  49. }
  50. }