Files
CodeNomad/packages/tauri-app/src-tauri/capabilities/main-window.json
2025-11-23 00:36:43 +00:00

17 lines
396 B
JSON

{
"$schema": "https://schema.tauri.app/capabilities.json",
"identifier": "main-window-native-dialogs",
"description": "Grant the main window access to required core features and native dialog commands.",
"remote": {
"urls": [
"http://127.0.0.1:*",
"http://localhost:*"
]
},
"windows": ["main"],
"permissions": [
"core:default",
"dialog:allow-open"
]
}