grapes-andrewdingus
Version:
GRAPES OS static site — CDN-ready via unpkg
19 lines (15 loc) • 628 B
JavaScript
(function () {
var path = location.pathname;
var base = "/";
if (location.hostname === "unpkg.com" || location.hostname === "www.unpkg.com") {
var unpkgMatch = path.match(/^(\/[^/]+(?:@[^/]+)?)\//);
if (unpkgMatch) base = unpkgMatch[1] + "/";
} else if (location.hostname === "cdn.jsdelivr.net") {
var jsDelivrMatch = path.match(/^(\/npm\/[^/]+(?:@[^/]+)?)\//);
if (jsDelivrMatch) base = jsDelivrMatch[1] + "/";
}
if (base === "/") return;
var baseEl = document.createElement("base");
baseEl.href = base;
document.head.insertBefore(baseEl, document.head.firstChild);
})();