tauri.conf.json 519 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "build": {
  3. "distDir": "../build",
  4. "devPath": "http://localhost:3000"
  5. },
  6. "ctx": {},
  7. "tauri": {
  8. "embeddedServer": {
  9. "active": true
  10. },
  11. "bundle": {
  12. "active": true
  13. },
  14. "whitelist": {
  15. "all": false
  16. },
  17. "window": {
  18. "title": "Tauri App"
  19. },
  20. "security": {
  21. "csp": "default-src data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline'"
  22. },
  23. "edge": {
  24. "active": true
  25. },
  26. "automaticStart": {
  27. "active": true
  28. }
  29. }
  30. }