Files
tauri-shell/capabilities/default.json
imbytecat 9ac5bfe6e7 refactor: 清理未使用依赖与配置,精简项目结构
- 移除不必要的权限配置opener:default
- 移除不再使用的异步相关依赖项及其实现,精简项目依赖树。
- 移除未使用的 tauri-plugin-opener 依赖项
- 移除已弃用的 tauri_plugin_opener 插件初始化,保留 shell 插件初始化并注册全局状态
2026-01-16 23:46:46 +08:00

19 lines
362 B
JSON

{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main"],
"permissions": [
"core:default",
{
"identifier": "shell:allow-execute",
"allow": [
{
"name": "binaries/server",
"sidecar": true
}
]
}
]
}