- 更新项目根目录名称为 tauri-shell 并调整相关结构说明 - 移除旧的 tauri-demo 包并添加新的 tauri-shell 包以支持 shell 功能 - 修改项目名称为 tauri-shell - 修改应用名称和标识符为 tauri-shell
28 lines
527 B
JSON
28 lines
527 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/nitro-server"
|
|
]
|
|
}
|
|
}
|