10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
export function loadRemoteStyle(url: string) {
|
|
if (!document.getElementById(url)) {
|
|
const link = document.createElement("link");
|
|
link.id = url;
|
|
link.rel = "stylesheet";
|
|
link.href = url;
|
|
document.head.appendChild(link);
|
|
}
|
|
}
|