tauri.conf.json 836 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "$schema": "https://schema.tauri.app/config/2",
  3. "productName": "auto-record",
  4. "version": "0.1.0",
  5. "identifier": "com.ewaga.autorecord",
  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": "auto-record",
  16. "width": 1460,
  17. "height": 768
  18. }
  19. ],
  20. "withGlobalTauri": true,
  21. "security": {
  22. "csp": null,
  23. "assetProtocol": {
  24. "enable": true,
  25. "scope": [
  26. "$APPDATA/**"
  27. ]
  28. }
  29. }
  30. },
  31. "bundle": {
  32. "active": true,
  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. }
  42. }