tauri.conf.json 444 B

1234567891011121314151617181920212223242526
  1. {
  2. "ctx": {},
  3. "tauri": {
  4. "embeddedServer": {
  5. "active": false
  6. },
  7. "bundle": {
  8. "active": true
  9. },
  10. "whitelist": {
  11. "all": false
  12. },
  13. "window": {
  14. "title": "Vue CLI App"
  15. },
  16. "security": {
  17. "csp": "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline'"
  18. },
  19. "edge": {
  20. "active": true
  21. },
  22. "automaticStart": {
  23. "active": true
  24. }
  25. }
  26. }