Netlify newbie here. I attempted to use asset optimization in the post-processing settings under build&deploy. I selected bundle css and js, and minify css and js.
The cloud front links inserted into my HTML go to non-functional assets, although the original URLs are all relative links.
So my questions is: Why does asset optimization generate these non-functional links to the image assets?
The current site can be found at https://staging.combustion.inc
Right now, the code shows something like:
srcset="images/butcher-table-landscape-1280.webp 1280w />
And when this is run through asset optimization, the following is generated:
srcset="https://d33wubrfki0l68.cloudfront.net/06fde940d5309d9c091fcb2c6698e734cf82c374/c0fc9/images/butcher-table-landscape-1280.webp 1280w />
But this link doesn’t link to a valid asset. Note, I’ve tried with other image formats other than webp and that doesn’t make a difference.