Answer the question
In order to leave comments, you need to log in
How to add custom fonts to ionic project?
My project is configured to compile scss -> css and I can't pick up fonts from the correct folder.
Here is my folder structure for better understanding.
| scss/
|-- basics/
|--_fonts.scss
|-- fonts/
|-- lineto-circular-book.woff
|-- lineto-circular-medium.woff
| www
@charset "UTF-8";
@font-face {
font-family: 'Circular-Medium';
src: url('fonts/lineto-circular-medium.woff');
}
@font-face {
font-family: 'Circular-Medium-Book';
src: url('fonts/lineto-circular-book.woff');
}
Answer the question
In order to leave comments, you need to log in
They lie in scss/fonts and are requested at css/fonts, maybe this is the problem?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question