tauri.conf.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "build": {
  3. "distDir": ["src/index.html"],
  4. "devPath": ["src/index.html"],
  5. "beforeDevCommand": "",
  6. "beforeBuildCommand": ""
  7. },
  8. "tauri": {
  9. "bundle": {
  10. "active": true,
  11. "targets": "all",
  12. "identifier": "com.tauri.dev",
  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. "useBootstrapper": false
  29. },
  30. "macOS": {
  31. "frameworks": [],
  32. "minimumSystemVersion": "",
  33. "useBootstrapper": false,
  34. "exceptionDomain": ""
  35. }
  36. },
  37. "allowlist": {
  38. "all": false
  39. },
  40. "windows": [
  41. {
  42. "title": "Welcome to Tauri!",
  43. "width": 800,
  44. "height": 600,
  45. "resizable": true,
  46. "fullscreen": false
  47. }
  48. ],
  49. "security": {
  50. "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self'"
  51. },
  52. "updater": {
  53. "active": false
  54. }
  55. }
  56. }