tauri.conf.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "$schema": "../../../tooling/cli/schema.json",
  3. "build": {
  4. "distDir": ["src/index.html"],
  5. "devPath": ["src/index.html"],
  6. "beforeDevCommand": "",
  7. "beforeBuildCommand": ""
  8. },
  9. "package": {
  10. "productName": "Dynamic Lib",
  11. "version": "0.1.0"
  12. },
  13. "tauri": {
  14. "bundle": {
  15. "active": true,
  16. "targets": "all",
  17. "identifier": "com.tauri.dev",
  18. "icon": [
  19. "../../.icons/32x32.png",
  20. "../../.icons/128x128.png",
  21. "../../.icons/128x128@2x.png",
  22. "../../.icons/icon.icns",
  23. "../../.icons/icon.ico"
  24. ],
  25. "resources": [],
  26. "externalBin": [],
  27. "copyright": "",
  28. "category": "DeveloperTool",
  29. "shortDescription": "",
  30. "longDescription": "",
  31. "deb": {
  32. "depends": []
  33. },
  34. "macOS": {
  35. "frameworks": [],
  36. "exceptionDomain": ""
  37. }
  38. },
  39. "allowlist": {
  40. "all": false
  41. },
  42. "windows": [
  43. {
  44. "title": "Welcome to Tauri!",
  45. "width": 800,
  46. "height": 600,
  47. "resizable": true,
  48. "fullscreen": false
  49. }
  50. ],
  51. "security": {
  52. "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self'"
  53. },
  54. "updater": {
  55. "active": false
  56. }
  57. }
  58. }