I am encountering a CORS error in my Figma plugin. Previously, it was working fine after adding entries in the manifest.json
for networkAccess
. My current configuration is:
"networkAccess": {
"allowedDomains": :
"*"
],
"devAllowedDomains": i
"*"
],
"reasoning": "Dev Purpose"
}
Despite using "*"
, the plugin has started giving CORS errors recently. Is there any change in how Figma handles networkAccess
, or is there something else I need to check to resolve this issue?