We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e98df45 commit 69eb22eCopy full SHA for 69eb22e
packages/web/src/App.tsx
@@ -69,7 +69,14 @@ export const App = () => {
69
wrappedChildren = (
70
<PostHogProvider
71
apiKey={ENV_WEB.POSTHOG_KEY as string}
72
- options={{ api_host: ENV_WEB.POSTHOG_HOST! }}
+ options={{
73
+ api_host: ENV_WEB.POSTHOG_HOST!,
74
+ capture_exceptions: {
75
+ capture_unhandled_errors: true,
76
+ capture_unhandled_rejections: true,
77
+ capture_console_errors: true,
78
+ },
79
+ }}
80
>
81
{wrappedChildren}
82
</PostHogProvider>
0 commit comments