tauri.conf.json 1.3 KB

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