tauri.conf.json 729 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "$schema": "https://schema.tauri.app/config/2",
  3. "productName": "opencode",
  4. "version": "0.1.0",
  5. "identifier": "ai.opencode",
  6. "build": {
  7. "beforeDevCommand": "bun run dev",
  8. "devUrl": "http://localhost:1420",
  9. "beforeBuildCommand": "bun run build",
  10. "frontendDist": "../dist"
  11. },
  12. "app": {
  13. "withGlobalTauri": true,
  14. "windows": [
  15. {
  16. "title": "opencode",
  17. "width": 800,
  18. "height": 600,
  19. "url": "https://desktop.dev.opencode.ai"
  20. }
  21. ],
  22. "security": {
  23. "csp": null
  24. }
  25. },
  26. "bundle": {
  27. "active": true,
  28. "targets": "all",
  29. "icon": ["icons/32x32.png", "icons/128x128.png", "icons/[email protected]", "icons/icon.icns", "icons/icon.ico"]
  30. }
  31. }