Skip to content

Commit

Permalink
fix(umami): remove localhost analytics (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
dorian-grst authored Nov 12, 2024
1 parent 07ca56f commit 3723895
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en" suppressHydrationWarning={true}>
<Script defer src="https://cloud.umami.is/script.js" data-website-id="0e9bcd71-c239-4666-9b8e-a7c9e99ae235" />
<Script defer src="https://cloud.umami.is/script.js" data-website-id="0e9bcd71-c239-4666-9b8e-a7c9e99ae235" data-domains="gits.app" />
<body className={cn(fontSans.className)}>
<QueryProvider>
<Providers>
Expand Down
1 change: 0 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import GistsLandingLogic from '@/components/logic/gists-landing-logic'
export default function HomePage() {
return (
<div className="w-full min-h-dvh sm:min-h-screen flex flex-row p-2">
<script defer src="https://cloud.umami.is/script.js" data-website-id="0e9bcd71-c239-4666-9b8e-a7c9e99ae235"></script>
<GistsLandingLogic />
</div>
)
Expand Down

0 comments on commit 3723895

Please sign in to comment.