tauri.windows.conf.json 587 B

12345678910111213141516171819202122232425
  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. "languages": ["SimpChinese", "English"],
  20. "license": "../LICENSE"
  21. }
  22. }
  23. }
  24. }
  25. }