CORS errors may appear temporarily. You can ignore them.
The "Prefetch complete" button causes to prefetch a document with 2 link tags:
<link href="href.png" rel="preload" as="image" imagesrcset="href.png 1w, imagesrcset.png 2w">
<link href="imagesrcset.png" rel="preload" as="image" imagesrcset="href.png 1w, imagesrcset.png 2w">
The "Prefetch incomplete" button causes to prefetch a document with only 1 link tag:
<link href="href.png" rel="preload" as="image" imagesrcset="imagesrcset.png 2w">
There must be a separate <link> tag for each image referenced in the imagesrcset attributes.
The href attribute of each <link> tag should point to its corresponding image.
For the context see this article.