Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const lazyLoadedJSFiles = [
'recorder',
'posthog-recorder',
'lazy-recorder',
'conversations',
'surveys',
'exception-autocapture',
'tracing-headers',
Expand Down
4 changes: 4 additions & 0 deletions packages/browser/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,10 @@ const plugins = (es5, noExternal) => [
// we don't mangle _surveyManager as it's used by external surveys to paint them on the dom directly
'_surveyManager',

// used in conversations
'_conversationsManager',
'_conversations',

// part of setup/teardown code, preserve these out of caution
'_init',
'_dom_loaded',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,19 @@ exports[`config snapshot for PostHogConfig 1`] = `
]
}
],
"disable_conversations": [
"false",
"true"
],
"conversations": [
"undefined",
{
"position": [
"undefined",
"{ bottom?: string | undefined; right?: string | undefined; left?: string | undefined; top?: string | undefined; }"
]
}
],
"disable_web_experiments": [
"false",
"true"
Expand Down
Loading
Loading