Apologies if my English is not up to par, as I am French. I'm encountering an issue where I include a font-face in my scss file like so:
@include font-face("Enhanced Dot Digital", font-files("font/enhanced_dot_digital.ttf"));
However, upon compilation, the resulting CSS file looks like this:
@font-face {
font-family: "Enhanced Dot Digital";
src: url('///fonts/font/enhanced_dot_digital.ttf') format('truetype');
}
The problem lies with the incorrect path for my font (located at font/enhanced_dot_digital.ttf), which I suspect is causing it not to work. Unfortunately, I am unable to remove the '///fonts' part and I don't know its origin. Could you please assist me with this dilemma?