tauri.conf.json 745 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "$schema": "../../crates/tauri-schema-generator/schemas/config.schema.json",
  3. "productName": "RunIteration",
  4. "version": "0.1.0",
  5. "identifier": "com.tauri.dev",
  6. "build": {
  7. "frontendDist": ["index.html"]
  8. },
  9. "app": {
  10. "windows": [
  11. {
  12. "title": "Welcome to Tauri!",
  13. "width": 800,
  14. "height": 600,
  15. "resizable": true,
  16. "fullscreen": false
  17. }
  18. ],
  19. "security": {
  20. "csp": "default-src 'self'; connect-src ipc: http://ipc.localhost"
  21. }
  22. },
  23. "bundle": {
  24. "active": true,
  25. "targets": "all",
  26. "icon": [
  27. "../.icons/32x32.png",
  28. "../.icons/128x128.png",
  29. "../.icons/128x128@2x.png",
  30. "../.icons/icon.icns",
  31. "../.icons/icon.ico"
  32. ]
  33. }
  34. }