I have the following allowlist in my configuration file which to my understanding should disallow calling functions from the process js API:
"allowlist": {
"all": false,
"app": {
"all": true,
"hide": false,
"show": false
},
"clipboard": {
"writeText": true
},
"dialog": {
"open": true
}
},
Nevertheless for some weird reason, I can call exit(1) from the process API and the program quits. I cannot reproduce this behavior in a separate project with the same allowlist and also otherwise almost exactly the same tauri.conf.json.
Any ideas on what could cause this behavior would be appreciated. I did do a cargo clean hoping it was caused by some caching issues but no luck.