enable cache busting for twemoji font
parent
9f4eb7782c
commit
85b448deb6
|
@ -78,9 +78,9 @@ export async function fixupColorFonts() {
|
|||
// we programatically add the right fontface.
|
||||
let font;
|
||||
if (await isColrFontSupported()) {
|
||||
font = new FontFace("Twemoji", "url('../../fonts/Twemoji_Mozilla/TwemojiMozilla-colr.woff2')", {});
|
||||
font = new FontFace("Twemoji", `url('${require("../../res/fonts/Twemoji_Mozilla/TwemojiMozilla-colr.woff2")}')`, {});
|
||||
} else {
|
||||
font = new FontFace("Twemoji", "url('../../fonts/Twemoji_Mozilla/TwemojiMozilla-sbix.woff2')", {});
|
||||
font = new FontFace("Twemoji", `url('${require("../../res/fonts/Twemoji_Mozilla/TwemojiMozilla-sbix.woff2")}')`, {});
|
||||
}
|
||||
document.fonts.add(font);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue