xXMarcinatorXx

tauri.conf.json (vanilla.js)

Feb 11th, 2022
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. {
  2. "package": {
  3. "productName": "RustyImage",
  4. "version": "0.1.0"
  5. },
  6. "build": {
  7. "distDir": "../dist",
  8. "devPath": "../dist",
  9. "beforeDevCommand": "",
  10. "beforeBuildCommand": ""
  11. },
  12. "tauri": {
  13. "bundle": {
  14. "active": true,
  15. "targets": "all",
  16. "identifier": "com.tauri.dev",
  17. "icon": [
  18. "icons/32x32.png",
  19. "icons/128x128.png",
  20. "icons/icon.icns",
  21. "icons/icon.ico"
  22. ],
  23. "resources": [],
  24. "externalBin": [],
  25. "copyright": "",
  26. "category": "DeveloperTool",
  27. "shortDescription": "",
  28. "longDescription": "",
  29. "deb": {
  30. "depends": [],
  31. "useBootstrapper": false
  32. },
  33. "macOS": {
  34. "frameworks": [],
  35. "minimumSystemVersion": "",
  36. "useBootstrapper": false,
  37. "exceptionDomain": "",
  38. "signingIdentity": null,
  39. "entitlements": null
  40. },
  41. "windows": {
  42. "certificateThumbprint": null,
  43. "digestAlgorithm": "sha256",
  44. "timestampUrl": ""
  45. }
  46. },
  47. "updater": {
  48. "active": false
  49. },
  50. "allowlist": {
  51. "all": true
  52. },
  53. "windows": [
  54. {
  55. "title": "RustyImage",
  56. "width": 800,
  57. "height": 600,
  58. "resizable": true,
  59. "fullscreen": false
  60. }
  61. ],
  62. "security": {
  63. "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
  64. }
  65. }
  66. }
Advertisement
Add Comment
Please, Sign In to add comment