tauri.conf.json 720 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "productName": "tauri-app",
  3. "version": "0.1.0",
  4. "identifier": "com.tauri.dev",
  5. "build": {
  6. "beforeDevCommand": "pnpm dev",
  7. "beforeBuildCommand": "pnpm build",
  8. "devUrl": "http://localhost:1420",
  9. "frontendDist": "../dist"
  10. },
  11. "app": {
  12. "withGlobalTauri": false,
  13. "security": {
  14. "csp": null
  15. },
  16. "windows": [
  17. {
  18. "fullscreen": false,
  19. "height": 600,
  20. "resizable": true,
  21. "title": "tauri-app",
  22. "width": 800
  23. }
  24. ]
  25. },
  26. "bundle": {
  27. "active": true,
  28. "targets": "all",
  29. "icon": [
  30. "icons/32x32.png",
  31. "icons/128x128.png",
  32. "icons/128x128@2x.png",
  33. "icons/icon.icns",
  34. "icons/icon.ico"
  35. ]
  36. }
  37. }