I have an Iframe that does not have a source url (i write the html content to it using js). Due to the csp rules, i keep getting the following error: cope not defined for window 'main' and URL 'about:blank'. I though I could fix this by adding the following to my tauri config:
"dangerousRemoteDomainIpcAccess": [
{
"domain": "about:blank",
"windows": ["main"],
"enableTauriAPI": false,
}
]
```,
But the error keeps persisting