这是我的css:

@font-face {
    font-family: 'geometria_lightlight';
    src: url('Geometria-Light-webfont.eot');
    src: url('Geometria-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('Geometria-Light-webfont.woff2') format('woff2'),
         url('Geometria-Light-webfont.woff') format('woff'),
         url('Geometria-Light-webfont.ttf') format('truetype'),
         url('Geometria-Light-webfont.svg#geometria_lightlight') format('svg');
    font-weight: lighter;
    font-style: normal;

}

#logo{
  font-family: 'geometria_lightlight';
  font-size: 60px;
}

这是我在chrome中得到的信息:
无法解码下载的字体:http://localhost:3000/Geometria-Light-webfont.woff2
localhost/:1 ots分析错误:版本标记无效
localhost/:1无法解码下载的字体:http://localhost:3000/Geometria-Light-webfont.woff
我通过Font Squirrel下载的每个字体都会收到这条消息。

最佳答案

将字体粘贴到public/fonts文件夹中。
然后做这样的事情:

@font-face {
  font-family: 'BebasNeueRegular';
  src: url('/fonts/BebasNeue-Regular.ttf') format('truetype');
}

09-13 11:02