tauri.conf.json 733 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "productName": "app",
  3. "version": "0.1.0",
  4. "identifier": "com.tauri.{{ plugin_name }}",
  5. "build": {
  6. "frontendDist": "../public"
  7. },
  8. "app": {
  9. "windows": [
  10. {
  11. "title": "app",
  12. "width": 800,
  13. "height": 600,
  14. "resizable": true,
  15. "fullscreen": false
  16. }
  17. ],
  18. "security": {
  19. "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'; connect-src ipc: http://ipc.localhost"
  20. }
  21. },
  22. "bundle": {
  23. "active": true,
  24. "targets": "all",
  25. "icon": [
  26. "icons/32x32.png",
  27. "icons/128x128.png",
  28. "icons/128x128@2x.png",
  29. "icons/icon.icns",
  30. "icons/icon.ico"
  31. ]
  32. }
  33. }