const a7s = { analyticsEndpoint: 'https://analytics.nilleb.com/api/v1/analytics/collect?property_id=43c65438-0a04-e5ae-c360-de67f02f62a1', trackEvent: function(event) { fetch(this.analyticsEndpoint, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ page_url: window.location.href, event: event }) }); } }; a7s.trackEvent('page_view'); window.nillebAnalytics = a7s;