forked from github/plane
chore: add env flag to enable session recorder conditionally (#822)
This commit is contained in:
parent
81da8715d5
commit
c7d930f89b
@ -6,3 +6,5 @@ NEXT_PUBLIC_GITHUB_ID=""
|
||||
NEXT_PUBLIC_SENTRY_DSN=""
|
||||
NEXT_PUBLIC_ENABLE_OAUTH=0
|
||||
NEXT_PUBLIC_ENABLE_SENTRY=0
|
||||
NEXT_PUBLIC_ENABLE_SESSION_RECORDER=0
|
||||
NEXT_PUBLIC_TRACK_EVENTS=0
|
@ -2,6 +2,10 @@ import Document, { Html, Head, Main, NextScript } from "next/document";
|
||||
|
||||
class MyDocument extends Document {
|
||||
render() {
|
||||
const isSessionRecorderEnabled = parseInt(
|
||||
process.env.NEXT_PUBLIC_ENABLE_SESSION_RECORDER || "0"
|
||||
);
|
||||
|
||||
return (
|
||||
<Html>
|
||||
<Head>
|
||||
@ -9,6 +13,7 @@ class MyDocument extends Document {
|
||||
<link rel="apple-touch-icon" href="/icon.png" />
|
||||
<meta name="theme-color" content="#fff" />
|
||||
<script defer data-domain="app.plane.so" src="https://plausible.io/js/script.js" />
|
||||
{isSessionRecorderEnabled && (
|
||||
<script
|
||||
defer
|
||||
dangerouslySetInnerHTML={{
|
||||
@ -19,6 +24,7 @@ class MyDocument extends Document {
|
||||
})(window, document, "clarity", "script", "g6lhwgkmrp");`,
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</Head>
|
||||
<body>
|
||||
<Main />
|
||||
|
@ -13,7 +13,8 @@
|
||||
"NEXT_PUBLIC_UNSPLASH_ACCESS",
|
||||
"NEXT_PUBLIC_TRACK_EVENTS",
|
||||
"TRACKER_ACCESS_KEY",
|
||||
"NEXT_PUBLIC_CRISP_ID"
|
||||
"NEXT_PUBLIC_CRISP_ID",
|
||||
"NEXT_PUBLIC_ENABLE_SESSION_RECORDER"
|
||||
],
|
||||
"pipeline": {
|
||||
"build": {
|
||||
|
Loading…
Reference in New Issue
Block a user