tauri.windows.conf.json 620 B

1234567891011121314151617181920212223242526
  1. {
  2. "tauri": {
  3. "systemTray": {
  4. "iconPath": "icons/tray-icon.png"
  5. },
  6. "bundle": {
  7. "targets": ["nsis", "updater"],
  8. "windows": {
  9. "certificateThumbprint": null,
  10. "digestAlgorithm": "sha256",
  11. "timestampUrl": "",
  12. "webviewInstallMode": {
  13. "type": "embedBootstrapper",
  14. "silent": true
  15. },
  16. "nsis": {
  17. "displayLanguageSelector": true,
  18. "installerIcon": "icons/icon.ico",
  19. "installMode": "both",
  20. "languages": ["SimpChinese", "English"],
  21. "license": "../LICENSE"
  22. }
  23. }
  24. }
  25. }
  26. }