我想将一堆自定义字体包含在我的网络应用程序中。我已将它们放在 src 中的 asset/fonts 文件夹中,但我不确定如何将它们实际包含在我的项目中
我在 styles.scss 中添加了以下内容,它可以编译但不会更改我的字体:
body {
font: Custom;
}
@font-face {
font-family: Custom;
src: url('assets/fonts/Custom.otf') format('opentype');
}
Run Code Online (Sandbox Code Playgroud)