Files
tauri-shell/tauri.conf.json
imbytecat 9aa894ec8b refactor: 统一将 Sidecar 服务器名称更改为 server
- 将 Sidecar 服务器的名称统一更改为 server,以简化命名并保持一致性。
- 更新允许执行的二进制文件名为 server 以匹配实际路径
- 更新外部二进制文件路径为 binaries/server
2026-01-16 23:10:47 +08:00

28 lines
521 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "tauri-shell",
"version": "0.1.0",
"identifier": "com.imbytecat.tauri-shell",
"app": {
"withGlobalTauri": true,
"windows": [],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [
"binaries/server"
]
}
}