bpms_site/.svn/pristine/d4/d4c5916bf61b6a7cd080316c67a1cbeb3d459472.svn-base
2025-11-02 16:38:49 +03:30

27 lines
608 B
Plaintext

/*
Files in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader.
*/ import ReactDOM from "react-dom";
export function preloadStyle(href) {
ReactDOM.preload(href, {
as: "style"
});
}
export function preloadFont(href, type) {
ReactDOM.preload(href, {
as: "font",
type
});
}
export function preconnect(href, crossOrigin) {
if (typeof crossOrigin === "string") {
ReactDOM.preconnect(href, {
crossOrigin
});
} else {
ReactDOM.preconnect(href);
}
}
//# sourceMappingURL=preloads.js.map