так что у меня есть изображение SVG, которое я хочу преобразовать в иконку, используя Fontello, чтобы конвертировать и импортировать его в мой проект nuxt. но конфигурация, кажется, не работает
, это то, что в моем nuxt.config. js файл
head: {
css: [
'~/assets/css/main.css',
'~/assets/css/animation.css',
'~/assets/css/fontello.css',
'~/assets/css/fontello-ie7.css',
'~/assets/css/fontello-ie7-codes.css', /*if IE 7 */
],
}
на моей html странице, я использую
<i @click="goToChat" class="the-icons demo-icon icon-chat menu ic-menu"></i>
и мой файл css,
.demo-icon {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: 0.2em;
text-align: center;
font-variant: normal;
text-transform: none;
line-height: 1em;
margin-left: 0.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
проблема в том, что файл css не прочитан font-family: "fontello";
я настроил его неправильно?