Compare commits

2 Commits

Author SHA1 Message Date
Alexis
103b9ea1d8 Updated astro 2026-07-13 21:00:47 +02:00
Alexis
8d35577182 Added matomo script 2026-07-10 23:22:52 +02:00
4 changed files with 299 additions and 274 deletions

View File

@@ -14,7 +14,7 @@
"@astrojs/vue": "^7.0.1",
"@tailwindcss/vite": "^4.3.2",
"@vueuse/core": "^14.3.0",
"astro": "^7.0.6",
"astro": "^7.0.7",
"astro-compressor": "^1.3.0",
"tailwindcss": "^4.3.2",
"vue": "^3.5.39"

539
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -162,6 +162,22 @@ const websiteDomain = "alexcreates.fr"
<meta name="twitter:domain" content={websiteDomain} />
<meta property="og:type" content="website" />
<!-- Matomo -->
<script is:inline>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//stats.alexcreates.fr/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body class="h-screen relative bg-background text-body px-3 md:px-12 overflow-hidden">

View File

@@ -160,6 +160,22 @@ const websiteDomain = "alexcreates.fr"
]
}
</script>
<!-- Matomo -->
<script is:inline>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//stats.alexcreates.fr/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body class="h-screen relative bg-slate-950 text-white">