Files
honey-fe/src/helpers/dom.ts
Hewston Fox 5e9acffa09
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m40s
feat: add settings menu
2026-03-22 04:08:56 +02:00

9 lines
248 B
TypeScript

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);
};