Google Analytics tracks all but BOUNCE rate

This is the website: https://www.revision6.de/
Designer link: https://preview.webflow.com/preview/r666?preview=17df0c036dabcc610ed4998080f6b060

Since I relaunched, all works well, but the bounce rate is 0%. Or is my website just that awesome? :joy:

Hi @Tobi_Huber

Is it possible that you’re triggering an event like time spent or % scroll that affect your bounce rate?
If so, you could add this piece of code to your event so it doesn’t affect bounce rate

ga('set', 'nonInteraction', true);

Hi @Laurent_Hayoz
Thank you very much. But no, I have no events set to be tracked in my Analytics Account. Actually everything is pretty much standard. Any other ideas?

I believe he means events that you trigger within Webflow, not event tracking in Analytics.

Then I might be confused if I follow…

This is the tracking code which I only altered for the URL-attribution:

<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXXX-4"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());
  gtag('config', 'UA-XXXXXXX-4', {'link_attribution': true});
</script>

Nothing else in that regard.