これは良い指摘ですが、CSSでこのようにパスを使用するべきではありません。アセット名を変数として参照する必要があります。
@font-face {
font-family: supply-light;
src: url($supply-light);
}
これは Include assets (e.g. images, fonts) in themes and components で説明されています。
これは良い指摘ですが、CSSでこのようにパスを使用するべきではありません。アセット名を変数として参照する必要があります。
@font-face {
font-family: supply-light;
src: url($supply-light);
}
これは Include assets (e.g. images, fonts) in themes and components で説明されています。