DEV Community

Discussion on: TIL - Adding Fonts to a React App

Collapse
 
yaireo profile image
Yair Even Or

why do you need to import the font file in a javascript?
seems like weird step

import './fonts/assistant.regular.ttf'; 
Enter fullscreen mode Exit fullscreen mode

There are webpack loaders which will do it automatically, this this one:
npmjs.com/package/resolve-url-loader

@font-face {
  font-family: "AssistantRegular";
  src: local("AssistantRegular"),
    url("./fonts/assistant.regular.ttf") format("truetype");
  font-weight: normal;
}
Enter fullscreen mode Exit fullscreen mode