tauri.conf.json 773 B

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