saudade/saudade.js
2023-12-10 20:37:03 -08:00

19 lines
515 B
JavaScript

(async () => {
// shared styles
const sharedStyle = document.createElement("link");
sharedStyle.rel = "stylesheet";
sharedStyle.href = "/style/shared.css";
document.head.append(sharedStyle);
// polyfills
const polyfills = document.createElement("script");
polyfills.type = "module";
polyfills.src = "/polyfills.js";
document.head.append(polyfills);
// menu
const menu = document.createElement("script");
menu.type = "module";
menu.src = "/menu.js";
document.head.append(menu);
})();