15 lines
351 B
HTML
15 lines
351 B
HTML
<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>
|