Hi im trying to implement the code on Figmas fetch to the console example but getting cors errors. I’ve added the domain to the list of allowed domains.
Fetch to the console
(async () => {
const response = await fetch('https://httpbin.org/get?success=true')
const json = await response.json()
console.log(JSON.stringify(json.args, null, 2))
figma.closePlugin()
})()
``` any ideas would be great.