Closed toniengelhardt closed 2 months ago
Have you tried manually activating this feature through PostHog options?
In nuxt.config.ts
:
export default defineNuxtConfig({
posthog: {
clientOptions: {
capture_pageleave: true,
},
},
});
I was able to receive page leave events with this setting turned on. By default this module setsa page_view
to false
, and maybe this affects somehow to page_leave
as well (although I haven't seen the documentation mentioning it)
Thanks, I'll try that 🙏🏽
I'm seeing this warning in the PostHog UI:
According to the docs, the
capture_pageleave
setting should be turned on by default.Is there anything I have to configure to make this work?