Recently delving into SCSS, I've been working on loading a local font into my SCSS file.
Oddly enough, while it works perfectly fine in a CSS file, in a SCSS file it doesn't show anything at all, not even an error message:
@font-face {
font-family: "Cairo";
font-weight: 400;
font-style: normal;
src: url(./assets/Fonts/Cairo/CairoBlock-Regular.ttf);
}
Both the CSS and SCSS files are in the same directory, so the path should be the same. What am I missing here?