Files
honey-fe/src/helpers/dom.ts

9 lines
248 B
TypeScript
Raw Normal View History

2026-03-22 04:08:56 +02:00
export const prefetch = (url: string | null | undefined) => {
if (!url) return;
const link = document.createElement("link");
link.rel = "prefetch";
link.href = url;
link.onload = () => link.remove();
document.head.appendChild(link);
};