tauri.conf.json 762 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "$schema": "https://schema.tauri.app/config/2.0.0-rc",
  3. "productName": "tauri-qwen",
  4. "version": "0.1.0",
  5. "identifier": "com.litongjava.tauri.qwen",
  6. "build": {
  7. "frontendDist": "dist",
  8. "devUrl": "https://chat.qwenlm.ai/"
  9. },
  10. "app": {
  11. "windows": [
  12. {
  13. "title": "Tauri qwen",
  14. "fullscreen": false,
  15. "resizable": true,
  16. "height": 1000,
  17. "width": 1500,
  18. "url": "https://chat.qwenlm.ai/",
  19. "x": 100,
  20. "y": 0
  21. }
  22. ],
  23. "security": {
  24. "csp": null
  25. }
  26. },
  27. "bundle": {
  28. "active": true,
  29. "targets": "all",
  30. "icon": [
  31. "icons/32x32.png",
  32. "icons/128x128.png",
  33. "icons/128x128@2x.png",
  34. "icons/icon.icns",
  35. "icons/icon.ico"
  36. ]
  37. }
  38. }