| | |
| | | } else if (cfg.analytics?.provider === "umami") { |
| | | componentResources.afterDOMLoaded.push(` |
| | | const umamiScript = document.createElement("script") |
| | | umamiScript.src = "${cfg.analytics.host}" ?? "https://analytics.umami.is/script.js" |
| | | umamiScript.src = "${cfg.analytics.host ?? "https://analytics.umami.is"}/script.js" |
| | | umamiScript.setAttribute("data-website-id", "${cfg.analytics.websiteId}") |
| | | umamiScript.async = true |
| | | |
| | | document.head.appendChild(umamiScript) |
| | | `) |
| | | } else if (cfg.analytics?.provider === "goatcounter") { |
| | | componentResources.afterDOMLoaded.push(` |
| | | const goatcounterScript = document.createElement("script") |
| | | goatcounterScript.src = "${cfg.analytics.scriptSrc ?? "https://gc.zgo.at/count.js"}" |
| | | goatcounterScript.async = true |
| | | goatcounterScript.setAttribute("data-goatcounter", |
| | | "https://${cfg.analytics.websiteId}.${cfg.analytics.host ?? "goatcounter.com"}/count") |
| | | document.head.appendChild(goatcounterScript) |
| | | `) |
| | | } |
| | | |
| | | if (cfg.enableSPA) { |