This happens randomly on random pages. Not sure what is causing this behavior. It seems to only happen to this specific app. The other app works fine. And not sure if both of them are related.
Any custom component/JavaScript can cause this, I’d suggest you look in the console for errors and maybe try switching off the scripts until it builds.
are you using zaraz with a domain proxied by cloudflare? if that’s the case probably prerendering the page will throw an error if your custom code is trying to access the global variable zaraz because it’s not there. if that’s the case you have multiple options to fix this:
add a condition to your custom code not to execute if you are in the prerendering environment, you can check this variable window.__WW_IS_PRERENDER__ (source)
I didn’t know that I can have a domain proxied through Cloudflare with the app hosted with WeWeb. So I don’t
This is already the current setup I’m using unfortunately. I only have some tracking pixels in Zaraz which shouldn’t affect the appearance of the app. The other script is from Getterms for cookie consent, don’t expect this to break the page either.