tauri.conf.json 807 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "$schema": "https://schema.tauri.app/config/2",
  3. "productName": "盼达点餐",
  4. "version": "0.1.1",
  5. "identifier": "com.qihuan.store-app",
  6. "build": {
  7. "beforeDevCommand": "pnpm dev",
  8. "devUrl": "http://localhost:1420",
  9. "beforeBuildCommand": "pnpm build",
  10. "frontendDist": "../dist"
  11. },
  12. "app": {
  13. "windows": [
  14. {
  15. "title": "盼达点餐",
  16. "width": 1422,
  17. "height": 800
  18. }
  19. ],
  20. "security": {
  21. "csp": null
  22. }
  23. },
  24. "bundle": {
  25. "windows": {
  26. "wix": {
  27. "language": "zh-CN"
  28. }
  29. },
  30. "active": true,
  31. "targets": "all",
  32. "resources": ["resources/*"],
  33. "icon": [
  34. "icons/32x32.png",
  35. "icons/128x128.png",
  36. "icons/128x128@2x.png",
  37. "icons/icon.icns",
  38. "icons/icon.ico"
  39. ]
  40. }
  41. }