14 lines
366 B
JavaScript
14 lines
366 B
JavaScript
"use client"
|
|
import posthog from "posthog-js"
|
|
import { PostHogProvider } from "posthog-js/react"
|
|
|
|
if (typeof window !== "undefined") {
|
|
posthog.init(process.env.NEXT_PUBLIC_POSTHOG_KEY, {
|
|
api_host: process.env.NEXT_PUBLIC_POSTHOG_HOST,
|
|
})
|
|
}
|
|
|
|
export function PHProvider({ children }) {
|
|
return <PostHogProvider client={posthog}>{children}</PostHogProvider>
|
|
}
|