Yes thank you! That solved my problem.
L
lugitan
@lugitan
Posts
-
Load custom local font -
Load custom local fontHello,
I would like to use a custom font in my nodebb forum. I am using a custom theme and I have placed the .ttf file in theme-folder/public/fonts/font.ttf. I have referenced the font file in my scss file with:
@font-face { font-family: CustomFont; src: url('/fonts/font.ttf') format('truetype'); font-weight: normal; font-style: normal; } body { font-family: "CustomFont", "Lato", sans-serif !important; }
My assumption was, that when building the platform, that the font will be used, however i get the error:
GET http://localhost:4567/fonts/font.ttf net::ERR_ABORTED 404 (Not Found)
Am I missing something?