tauri.conf.json 978 B

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