I'm trying to configure my custom plugin named safe-area in tauri.config.json.
Here’s what I did:
{
"plugins": {
"safe-area": {
"value": "by config"
}
}
}
However, when I run npm run tauri ios dev, the app crashes on startup.
The official documentation uses the term plugin-name, so I assumed that hyphenated names would work.
Is using hyphens (-) in plugin keys inside tauri.config.json supported?
Or should we always use camelCase or some other convention regardless of the plugin’s actual name?
Thanks in advance!