Svelte conversion — quick and dirty
Some checks failed
ci/woodpecker/pr/ci Pipeline failed

This commit is contained in:
2026-02-15 14:10:57 -03:00
parent e712e73902
commit 99cb89d1e8
198 changed files with 3192 additions and 1193 deletions

View File

@@ -0,0 +1,11 @@
(function () {
const script = document.currentScript;
const id = script && script.getAttribute('data-ga-id');
if (!id) return;
window.dataLayer = window.dataLayer || [];
function gtag(...args) {
window.dataLayer.push(...args);
}
gtag('js', new Date());
gtag('config', id, { anonymize_ip: true });
})();