tabi/static/js/initializePlausible.js
Christian F. Coors e04ed249d6
Some checks failed
Build Site / Check and Build for Pull Requests (push) Has been cancelled
Build Site / Build and Deploy on Main Push (push) Has been cancelled
feat(analytics): support new plausible script (#587)
Co-authored-by: welpo <welpo@users.noreply.github.com>
2026-02-03 17:31:00 +01:00

12 lines
526 B
JavaScript

// Initialise Plausible analytics queue for the new script format (v3.1.0+).
// This sets up a queue system that collects tracking calls before the main
// Plausible script loads, ensuring no events are lost.
window.plausible = window.plausible || function () {
(plausible.q = plausible.q || []).push(arguments);
};
// Initialise the Plausible configuration object.
plausible.init = plausible.init || function (config) {
plausible.o = config || {};
};
// Set up Plausible with default configuration.
plausible.init();