tauri.conf.json 745 B

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