diff --git a/src/tracker/index.js b/src/tracker/index.js index 333a61cd..3728be0e 100644 --- a/src/tracker/index.js +++ b/src/tracker/index.js @@ -23,7 +23,7 @@ const domain = attr(_data + 'domains') || ''; const domains = domain.split(',').map(n => n.trim()); const host = - '__COLLECT_API_HOST__' || hostUrl || currentScript.src.split('/').slice(0, -1).join('/'); + hostUrl || '__COLLECT_API_HOST__' || currentScript.src.split('/').slice(0, -1).join('/'); const endpoint = `${host.replace(/\/$/, '')}__COLLECT_API_ENDPOINT__`; const screen = `${width}x${height}`; const eventRegex = /data-umami-event-([\w-_]+)/;