tauri.conf.json 843 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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:6555",
  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. "shadow": false,
  22. "devtools": true
  23. }
  24. ],
  25. "security": {
  26. "csp": null
  27. },
  28. "macOSPrivateApi": true
  29. },
  30. "bundle": {
  31. "active": true,
  32. "targets": "all",
  33. "icon": [
  34. "icons/32x32.png",
  35. "icons/128x128.png",
  36. "icons/128x128@2x.png",
  37. "icons/icon.icns",
  38. "icons/icon.ico"
  39. ]
  40. }
  41. }