tauri.conf.json 1.2 KB

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