Annin
Annin
DDeno
Created by Annin on 3/31/2025 in #help
How to load fonts in /static?
Using Fresh with tailwind By doing
@font-face {
font-family: "MyFont";
src: url("/MyFont-Regular.woff2");
}
@font-face {
font-family: "MyFont";
src: url("/MyFont-Regular.woff2");
}
and
<div class="font-[MyFont]">wheres my font</div>
<div class="font-[MyFont]">wheres my font</div>
It shows the font on localhost when running deno task start, but not on the actual site. Browser console shows downloadable font: download failed (font-family: "MyFont" style:normal weight:400 stretch:100 src index:0): status=2147746065 source: https://mysite.deno.dev/MyFont-Regular.woff2 GET https://mysite.deno.dev/MyFont-Regular.woff2 returns 404 css and font file are both just in /static Let me know if there's other info I should provide, thanks in advance
6 replies