tauri.conf.json 768 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "$schema": "https://schema.tauri.app/config/2",
  3. "productName": "Enesis Editor",
  4. "version": "0.1.0",
  5. "identifier": "md.enesis.editor",
  6. "build": {
  7. "beforeDevCommand": "pnpm dev",
  8. "devUrl": "http://localhost:3000",
  9. "beforeBuildCommand": "pnpm generate",
  10. "frontendDist": "../.output/public"
  11. },
  12. "app": {
  13. "windows": [
  14. {
  15. "title": "Enesis Editor",
  16. "width": 1200,
  17. "height": 800,
  18. "backgroundColor": "#121212"
  19. }
  20. ],
  21. "security": {
  22. "csp": null
  23. }
  24. },
  25. "bundle": {
  26. "active": true,
  27. "targets": "all",
  28. "resources": [],
  29. "icon": [
  30. "icons/32x32.png",
  31. "icons/128x128.png",
  32. "icons/[email protected]",
  33. "icons/icon.icns",
  34. "icons/icon.ico"
  35. ]
  36. }
  37. }