stephan.hadan.de/overrides/partials/integrations/analytics/custom.html

16 lines
351 B
HTML
Raw Normal View History

2024-12-02 14:12:33 +01:00
<script>
/* Add custom analytics integration here, e.g. */
var property = "{{ config.extra.analytics.property }}"
/* Wait for page to load and application to mount */
document.addEventListener("DOMContentLoaded", function() {
location$.subscribe(function(url) {
/* Add custom page event tracking here */
})
})
</script>