Hi, I’m facing a problem after using Netlify Image CDN. the cdn is working correctly, but when I refresed the page it gave me 404.
To solve this problem I added a redirection rule to my netlify.toml file which is visible in the build summary. The entire file looks like this:
[[redirects]]
from = "/*"
to = "/"
status = 200
[images]
remote_images = ["https://content.stinkfilms.com/.*"]
[build.environment]
NETLIFY_IMAGE_CDN = "true"
The problem now is that when I refresh the page all I can see is a black screen and the errors in the console (see the screenshot)
The error messages I receive are:
DOMException: Failed to execute 'appendChild' on 'Node': This node type does not support this method.
and
TypeError: Cannot read properties of undefined (reading '$scopedSlots')
the website address is https://stink-films.netlify.app/
any thoughts?
thanks