tauri.conf.json 802 B

1234567891011121314151617181920212223242526272829303132333435363738
  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": "#1c1917",
  19. "dragDropEnabled": false
  20. }
  21. ],
  22. "security": {
  23. "csp": null
  24. }
  25. },
  26. "bundle": {
  27. "active": true,
  28. "targets": "all",
  29. "resources": [],
  30. "icon": [
  31. "icons/32x32.png",
  32. "icons/128x128.png",
  33. "icons/[email protected]",
  34. "icons/icon.icns",
  35. "icons/icon.ico"
  36. ]
  37. }
  38. }