.. / plausible-analytics
Star Fork

Simple, open source, lightweight and privacy-friendly web analytics alternative to Google Analytics.

analytics
plausible
...

Latest

<img> @data-* ⏱️ before-load
More information

Root Cause

Source: https://github.com/plausible/analytics/blob/c92e0afc17c414079d57dfc909bc48a22df95a42/tracker/src/config.js#L7

var location = window.location
var document = window.document

if (COMPILE_COMPAT) {
  var scriptEl = document.getElementById('plausible')
} else if (COMPILE_PLAUSIBLE_LEGACY_VARIANT) {
  var scriptEl = document.currentScript
}

// [...]

config.endpoint = scriptEl.getAttribute('data-api') || defaultEndpoint()
config.domain = scriptEl.getAttribute('data-domain')
config.logging = true

Source: https://github.com/plausible/analytics/blob/c92e0afc17c414079d57dfc909bc48a22df95a42/tracker/src/track.js#L126

sendRequest(config.endpoint, payload, options)

Related links:

Found by jackfromeast, ishmeals.


Source | History