tauri.conf.json 807 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. "security": {
  21. "csp": null,
  22. "assetProtocol": {
  23. "enable": true,
  24. "scope": [
  25. "$APPDATA/**"
  26. ]
  27. }
  28. }
  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. }