I'm tryng to get a list of data from another website, but i keep getting the error:
dataFetcher.ts:7 Uncaught (in promise) SyntaxError: Unexpected end of input
this is the code I am using:
return await fetch('http://otherwebsite.com/export/export.json', { mode: 'no-cors' } )
.then((res) => res.json());
What am I missing? (when I inspect the data im retrieving everything looks normal)