So the image source is still the CDN, not the images in the image folder.
Also some of those small images in the gallery aren't working. The img tags look like this:
<img class="core-tile__image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAQAAAA3fa6RAAAAEElEQVR42mN8/58BCBghFAAizwPfChHPggAAAABJRU5ErkJggg==" alt="Wan-Tan-Ravioli mit Ziegenkäse und Sauce Pistou" title="Wan-Tan-Ravioli mit Ziegenkäse und Sauce Pistou" data-src="https://assets.tmecosys.com/image/upload/t_web276x230/img/recipe/ras/Assets/6D58F319-5004-44D1-9679-EC0D741B899E/Derivates/0f137a02-dbdc-4859-ad53-711d03177273" data-srcset="https://assets.tmecosys.com/image/upload/t_web276x230/img/recipe/ras/Assets/6D58F319-5004-44D1-9679-EC0D741B899E/Derivates/0f137a02-dbdc-4859-ad53-711d03177273 276w,https://assets.tmecosys.com/image/upload/t_web378x315/img/recipe/ras/Assets/6D58F319-5004-44D1-9679-EC0D741B899E/Derivates/0f137a02-dbdc-4859-ad53-711d03177273 378w,
https://assets.tmecosys.com/image/upload/t_web276x230%402x/img/recipe/ras/Assets/6D58F319-5004-44D1-9679-EC0D741B899E/Derivates/0f137a02-dbdc-4859-ad53-711d03177273 552w" data-sizes="(min-width: 1333px) 276px,(min-width: 1024px) 286px,(min-width: 768px) 220px, 140px">
It seems like the client-side framework didn't have enough time yet to properly set the src/srcset attributes before creating the dumped HTML. That's why there are still data-srcset and data-src attributes present in those gallery images which don't work.
It seems the dumped images in the
image
folder aren't really used by the dumped HTML files. Instead the img tags look something like this:So the image source is still the CDN, not the images in the
image
folder.Also some of those small images in the gallery aren't working. The img tags look like this:
It seems like the client-side framework didn't have enough time yet to properly set the src/srcset attributes before creating the dumped HTML. That's why there are still data-srcset and data-src attributes present in those gallery images which don't work.