Am reading from a user supplied URL.
const blob = await this.httpClient
.get(this.loadURL.value, {
responseType: 'blob'
})
.toPromise();
debug('blob', blob);
am getting a cors error like this:
Access to XMLHttpRequest at 'https://picsum.photos/200/300' from origin 'https://app-me-us-kirk.apexdesigner.app' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.