Add userParam
Some checks are pending
Deploy / deploy (push) Blocked by required conditions
Deploy / build-and-publish (push) Successful in 2m20s

This commit is contained in:
Kopyl Anatoly
2024-12-11 19:06:31 +03:00
parent f1e9deca68
commit ebeee6cfe6

View File

@@ -1,5 +1,6 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
@@ -18,7 +19,10 @@
clickmap: true,
trackLinks: true,
accurateTrackBounce: true,
webvisor: true
webvisor: true,
userParams: {
university_test_group: Math.random() > .5 ? 'a' : 'b'
}
});
</script>
<noscript>
@@ -26,7 +30,9 @@
</noscript>
<!-- /Yandex.Metrika counter -->
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>