tauri.conf.json 1.2 KB

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