tauri.conf.json 948 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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": 1208,
  17. "height": 832,
  18. "maximizable": false,
  19. "minimizable": true,
  20. "closable": true,
  21. "resizable": false
  22. }
  23. ],
  24. "withGlobalTauri": true,
  25. "security": {
  26. "csp": null,
  27. "assetProtocol": {
  28. "enable": true,
  29. "scope": [
  30. "$APPDATA/**"
  31. ]
  32. }
  33. }
  34. },
  35. "bundle": {
  36. "active": true,
  37. "targets": "all",
  38. "icon": [
  39. "icons/32x32.png",
  40. "icons/128x128.png",
  41. "icons/128x128@2x.png",
  42. "icons/icon.icns",
  43. "icons/icon.ico"
  44. ]
  45. }
  46. }