tauri.conf.json 792 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "$schema": "https://schema.tauri.app/config/2",
  3. "productName": "test",
  4. "version": "0.1.0",
  5. "identifier": "com.test.app",
  6. "build": {
  7. "beforeDevCommand": "yarn dev",
  8. "devUrl": "http://localhost:6547",
  9. "beforeBuildCommand": "yarn build",
  10. "frontendDist": "../dist"
  11. },
  12. "app": {
  13. "windows": [
  14. {
  15. "title": "test",
  16. "center": true,
  17. "transparent": true,
  18. "decorations": false,
  19. "minWidth": 1300,
  20. "minHeight": 800
  21. }
  22. ],
  23. "security": {
  24. "csp": null
  25. },
  26. "macOSPrivateApi": true
  27. },
  28. "bundle": {
  29. "active": true,
  30. "targets": "all",
  31. "icon": [
  32. "icons/32x32.png",
  33. "icons/128x128.png",
  34. "icons/128x128@2x.png",
  35. "icons/icon.icns",
  36. "icons/icon.ico"
  37. ]
  38. }
  39. }