UNPKG

sweetpea

Version:

Signal and Web Component Enhanced Web Apps

10 lines (9 loc) 293 B
export default async function main(...list){ for (const url of list) { const response = await fetch(url); const str = await response.text(); const css = new CSSStyleSheet(); css.replaceSync(str); document.adoptedStyleSheets = [...document.adoptedStyleSheets, css]; } }