Я хочу оптимизировать загрузку шрифта Glyphicons для инструмента Google PageSpeed Insights. Мне нужно применить код CSS ниже:
font-display: swap
Вот местоположение моего шрифта:
https://www.example.com/themes/custom/bootstrap_subtheme_front_office_old/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2
Я добавил следующий код в файл style.scss моего подтема, и я скомпилировал тему, но Google все еще говорит, что я должен применить font-display: swap;
style.scss
font-display: swap;
@font-face { font-family: 'Glyphicons Halflings'; src: url('../bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2') format('woff2'); font-display: swap; }