score:3

Accepted answer

i suggest you make a "base" scss file, where you write/import your fonts, icons, and other website-wide components, like header, footer etc. then you import that base.scss file in each of your page's css.

base.scss:

$font-path: "../../global/fonts" !default;
@font-face{
  src: url('#{$font-path}/myfont.ttf');
   ...
}
...

and in each page, add:

@import "base;

Related Query

More Query from same tag