diff --git a/src/components/global/Head.astro b/src/components/global/Head.astro
index c568d36..2acbe2d 100644
--- a/src/components/global/Head.astro
+++ b/src/components/global/Head.astro
@@ -3,9 +3,9 @@ const { Title, Description } = Astro.props;
// Don't count views in local environment
if (Astro.url.hostname === "localhost") {
- var UseUmami = false;
+ var UsePiwik = false;
} else {
- var UseUmami = true;
+ var UsePiwik = true;
}
---
@@ -36,12 +36,20 @@ if (Astro.url.hostname === "localhost") {
{
- UseUmami ? (
-
+ UsePiwik ? (
+
) : null
}