“Угловой шрифт потрясающий” Ответ

Шрифт потрясающий угловой

//install in your project directory
npm install --save @fortawesome/fontawesome-free

// in angular.json add in the 'build' section the following lines in 'styles' and 'scripts'
"styles": [
           "node_modules/@fortawesome/fontawesome-free/css/all.css"
        ]

"scripts": [
          "node_modules/@fortawesome/fontawesome-free/js/all.js"
        ]

//from now on, you can use fontawesome icons through the <i>
    <i class='fab fa-facebook'></i>
Grieving Gharial

Угловой шрифт потрясающий

ng add @fortawesome/angular-fontawesome
Hastings Keith

Fontawesome Angular

//2021: INSTALL IT IN ANGULAR 1ST
npm i font-awwsome
// in angular.json add in the 'build' section the following lines in 'styles' and 'scripts'
"styles"[
              "node_modules/@fortawesome/fontawesome-free/css/fontawesome.css"
]
Prickly Pygmy

Как использовать загруженные значки Fontawsoem в Angula

"apps": [
    {
      "root": "src",
      "outDir": "dist",
      ....
      "styles": [
          "styles.css",
          "../node_modules/bootstrap/dist/css/bootstrap.css",
          "../node_modules/font-awesome/css/font-awesome.css" // -here webpack will automatically build a link css element out of this!?
      ],
      ...
  }
  ]
],
Dark Dolphin

Как получить значки Fas в Angualr

import { library } from '@fortawesome/fontawesome-svg-core';
import { fas } from '@fortawesome/free-solid-svg-icons';
import { far } from '@fortawesome/free-regular-svg-icons';
library.add(fas, far);
Misty Manatee

Ответы похожие на “Угловой шрифт потрясающий”

Вопросы похожие на “Угловой шрифт потрясающий”

Больше похожих ответов на “Угловой шрифт потрясающий” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования