gpt4 book ai didi

vue.js - 无法解码下载的字体。 OTS 解析错误。浏览器

转载 作者:行者123 更新时间:2023-12-05 08:32:15 25 4
gpt4 key购买 nike

我正在尝试在我的 Vue 应用程序(使用 Vue cli webpack 模板创建)的某个组件中导入网络字体。在我的一个组件中,我尝试通过引用项目中包含以下内容的 _fonts.scss 来导入字体:

@font-face {
font-family: 'SomeFont';
src: url('~/assets/fonts/SomeFont-Regular.woff2') format('woff2'),
url('~/assets/fonts/SomeFont-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}

然后,当我打开应用程序时,出现此错误:

Failed to decode downloaded font: http://localhost:8080/assets/fonts/SomeFont-Regular.woff2
Failed to decode downloaded font: http://localhost:8080/assets/fonts/SomeFont-Regular.woff

还有这个:

OTS parsing error: invalid version tag
OTS parsing error: invalid version tag

我在网上搜索了这个问题,没有找到任何相关的东西,或者一些相关的情况

最佳答案

在url()中导入字体时尽量使用相对路径。没有'~/fontPath'

例子

@font-face {
font-family: 'MyFont';
src: url("../assets/fonts/MyFont.woff2") format('woff2');
font-weight: normal;
font-style: normal;
}

关于vue.js - 无法解码下载的字体。 OTS 解析错误。浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52200834/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com