tauri.portable.conf.json 1021 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "$schema": "https://schema.tauri.app/config/2.0.0-rc",
  3. "productName": "Hoppscotch Agent Portable",
  4. "version": "0.1.3",
  5. "identifier": "io.hoppscotch.agent",
  6. "build": {
  7. "beforeDevCommand": "pnpm dev",
  8. "devUrl": "http://localhost:1420",
  9. "beforeBuildCommand": "pnpm build",
  10. "frontendDist": "../dist"
  11. },
  12. "app": {
  13. "windows": [
  14. {
  15. "title": "Hoppscotch Agent Portable",
  16. "width": 600,
  17. "height": 400,
  18. "center": true,
  19. "resizable": false,
  20. "maximizable": false,
  21. "minimizable": false,
  22. "focus": true,
  23. "alwaysOnTop": true,
  24. "create": false
  25. }
  26. ],
  27. "security": {
  28. "csp": null
  29. }
  30. },
  31. "bundle": {
  32. "active": false,
  33. "targets": "all",
  34. "icon": [
  35. "icons/32x32.png",
  36. "icons/128x128.png",
  37. "icons/128x128@2x.png",
  38. "icons/icon.icns",
  39. "icons/icon.ico"
  40. ],
  41. "createUpdaterArtifacts": false
  42. },
  43. "plugins": {
  44. "updater": {
  45. "active": false
  46. }
  47. }
  48. }