Remove SplitbeeAnalytics for now

This commit is contained in:
prototypa
2023-07-27 14:48:45 -04:00
parent 62b149e2d6
commit 7344698d35

View File

@ -8,8 +8,6 @@ import { MetaSEO } from '~/types';
import { getCanonical, getAsset } from '~/utils/permalinks'; import { getCanonical, getAsset } from '~/utils/permalinks';
import { getRelativeUrlByFilePath } from '~/utils/directories'; import { getRelativeUrlByFilePath } from '~/utils/directories';
import SplitbeeAnalytics from './SplitbeeAnalytics.astro';
export interface Props extends MetaSEO { export interface Props extends MetaSEO {
dontUseTitleTemplate?: boolean; dontUseTitleTemplate?: boolean;
} }
@ -87,6 +85,4 @@ const image =
<!-- Google Analytics --> <!-- Google Analytics -->
{SITE.googleAnalyticsId && <GoogleAnalytics id={String(SITE.googleAnalyticsId)} partytown={true} />} {SITE.googleAnalyticsId && <GoogleAnalytics id={String(SITE.googleAnalyticsId)} partytown={true} />}
{SITE.splitbeeAnalytics?.enabled && <SplitbeeAnalytics {...SITE.splitbeeAnalytics} />}
<link rel="sitemap" href={getAsset('/sitemap-index.xml')} /> <link rel="sitemap" href={getAsset('/sitemap-index.xml')} />