Tauri APP
获取应用程序元数据。
当 build.withGlobalTauri in
设置为 时,也可以访问此包。window.__TAURI__.app
tauri.conf.jsontrue
必须将 API 添加到 tauri.allowlist.app
中:tauri.conf.json
{
"tauri": {
"allowlist": {
"app": {
"all": true, // enable all app APIs
"show": true,
"hide": true
}
}
}
}
建议仅将您使用的 API 列入许可列表,以获得最佳捆绑包大小和安全性。