Why can I load a random image off the internet in regular HTML in an but run into this annoying CORS crap when in A-Frames?
a-frame code that runs in CORS error
<a-assets>
<img id="homeThumbnail" src="https://i.ytimg.com/vi/GJWuVwZO98s/maxresdefault.jpg" crossorigin="anonymous">
</a-assets>
regular HTML code that displays the image just fine
<img src="https://i.ytimg.com/vi/GJWuVwZO98s/maxresdefault.jpg">