tauri.conf.json 747 B

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