我正在使用font face从服务器下载字体文件。
问题是,当我看到chrome网络标签时,我看到多个请求获取相同的字体文件。
第一个请求有200个状态码,其余请求有304个(未修改)
有趣的是,这只发生在chrome中。我在safari和firefox中进行了测试,他们只发送了一个请求。
下面是我的代码段
@font-face {
font-family: 'MyFont';
src: url('https://example.com/font.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
$font-family: 'MyFont', sans-serif !important;
$font-weight: 400;
请告诉我您的意见