mirror of
https://github.com/home-assistant/frontend.git
synced 2026-02-26 20:54:49 +00:00
17 lines
551 B
Plaintext
17 lines
551 B
Plaintext
<script>
|
|
if (navigator.userAgent.indexOf("Android") === -1 &&
|
|
navigator.userAgent.indexOf("CrOS") === -1) {
|
|
function _pf(src, type) {
|
|
var el = document.createElement("link");
|
|
el.rel = "preload";
|
|
el.as = "font";
|
|
el.type = "font/woff2";
|
|
el.href = src;
|
|
el.crossOrigin = "anonymous";
|
|
document.head.append(el);
|
|
}
|
|
_pf("/static/fonts/roboto/Roboto-Regular.woff2");
|
|
_pf("/static/fonts/roboto/Roboto-Medium.woff2");
|
|
}
|
|
</script>
|