mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-02 03:25:53 +01:00
Fix font preloading (#649)
Thanks to this stack overflow answer ( https://stackoverflow.com/a/41678350/232122 ) I was able to fix the font preloading! If we put fonts.css in the public/folder and include it with normal html, we can avoid going through the build pipeline!
This commit is contained in:
parent
e50dc5dbed
commit
f261d6f2fc
13
public/fonts.css
Normal file
13
public/fonts.css
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
/* http://www.eaglefonts.com/fg-virgil-ttf-131249.htm */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Virgil";
|
||||||
|
src: url("FG_Virgil.ttf");
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* https://github.com/microsoft/cascadia-code */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Cascadia";
|
||||||
|
src: url("Cascadia.ttf");
|
||||||
|
font-display: swap;
|
||||||
|
}
|
@ -48,16 +48,17 @@
|
|||||||
<meta name="twitter:image" content="https://excalidraw.com/og-image.png" />
|
<meta name="twitter:image" content="https://excalidraw.com/og-image.png" />
|
||||||
|
|
||||||
<link rel="icon" href="%PUBLIC_URL%/logo.png" />
|
<link rel="icon" href="%PUBLIC_URL%/logo.png" />
|
||||||
|
<link rel="stylesheet" href="%PUBLIC_URL%/fonts.css" />
|
||||||
<link
|
<link
|
||||||
rel="preload"
|
rel="preload"
|
||||||
href="/FG_Virgil.ttf"
|
href="%PUBLIC_URL%/FG_Virgil.ttf"
|
||||||
as="font"
|
as="font"
|
||||||
type="font/ttf"
|
type="font/ttf"
|
||||||
crossorigin="anonymous"
|
crossorigin="anonymous"
|
||||||
/>
|
/>
|
||||||
<link
|
<link
|
||||||
rel="preload"
|
rel="preload"
|
||||||
href="/Cascadia.ttf"
|
href="%PUBLIC_URL%/Cascadia.ttf"
|
||||||
as="font"
|
as="font"
|
||||||
type="font/ttf"
|
type="font/ttf"
|
||||||
crossorigin="anonymous"
|
crossorigin="anonymous"
|
||||||
|
@ -1,19 +1,5 @@
|
|||||||
@import "./theme.css";
|
@import "./theme.css";
|
||||||
|
|
||||||
/* http://www.eaglefonts.com/fg-virgil-ttf-131249.htm */
|
|
||||||
@font-face {
|
|
||||||
font-family: "Virgil";
|
|
||||||
src: url("/FG_Virgil.ttf");
|
|
||||||
font-display: swap;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* https://github.com/microsoft/cascadia-code */
|
|
||||||
@font-face {
|
|
||||||
font-family: "Cascadia";
|
|
||||||
src: url("/Cascadia.ttf");
|
|
||||||
font-display: swap;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
Loading…
Reference in New Issue
Block a user