我试图在我的应用中使用自定义字体。我有两种字体,一种是flaticons的图标字体,另一种是文本字体" Humanst webfont",我已经下载了它们,并按照许多关于如何使它们工作的教程,这里是到目前为止我得到了什么:
错误: Erro thrown of broken import
我的项目文件夹:THE SRC AND WWW FOLDERS
我的app.scss中有这个:
@import "../assets/fonts/humanst-webfont.css";
@import "../assets/fonts/flaticon.css";
这是我的人类-webfotn.css:
@font-face {
font-family: 'Humanst';
src: url('humanst-webfont.woff2') format('woff2'),
url('humanst-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
我尝试导入.css,.scss并让人为webfont。我的应用程序脚本也更新到了1.0.0。 在离子服务中它工作正常,但当我尝试建立它休息。有人知道它是什么吗?
提前致谢:)
答案 0 :(得分:0)
我遇到了同样的问题。我结束了将css放在index.html而不是变量文件中。 在生产过程中和服务期间工作得很好。