tauri.conf.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "$schema": "../node_modules/@tauri-apps/cli/schema.json",
  3. "build": {
  4. "beforeBuildCommand": "yarn build",
  5. "beforeDevCommand": "yarn dev",
  6. "devPath": "http://localhost:3000",
  7. "distDir": "../out"
  8. },
  9. "package": {
  10. "productName": "chatgpt-next-web",
  11. "version": "2.8"
  12. },
  13. "tauri": {
  14. "allowlist": {
  15. "all": false
  16. },
  17. "bundle": {
  18. "active": true,
  19. "category": "DeveloperTool",
  20. "copyright": "",
  21. "deb": {
  22. "depends": []
  23. },
  24. "externalBin": [],
  25. "icon": [
  26. "icons/32x32.png",
  27. "icons/128x128.png",
  28. "icons/128x128@2x.png",
  29. "icons/icon.icns",
  30. "icons/icon.ico"
  31. ],
  32. "identifier": "com.yida.chatgpt.nextweb",
  33. "longDescription": "",
  34. "macOS": {
  35. "entitlements": null,
  36. "exceptionDomain": "",
  37. "frameworks": [],
  38. "providerShortName": null,
  39. "signingIdentity": null
  40. },
  41. "resources": [],
  42. "shortDescription": "",
  43. "targets": "all",
  44. "windows": {
  45. "certificateThumbprint": null,
  46. "digestAlgorithm": "sha256",
  47. "timestampUrl": ""
  48. }
  49. },
  50. "security": {
  51. "csp": null
  52. },
  53. "updater": {
  54. "active": false
  55. },
  56. "windows": [
  57. {
  58. "fullscreen": false,
  59. "height": 600,
  60. "resizable": true,
  61. "title": "tauri-next",
  62. "width": 800
  63. }
  64. ]
  65. }
  66. }