Answers for "installing a specific version of font awesome in angualr"

1

font awesome install in angular

npm install --save font-awesome angular-font-awesome
//once installed you will to import font awesome to your app.module.ts
import { AngularFontAwesomeModule} from 'angular-font-awesome';
//on your app.module.ts add AngularFontAwesomeModule under imports
imorts[
.../
AngularFontAwesomeModule,
],
Posted by: Guest on August-13-2020

Code answers related to "installing a specific version of font awesome in angualr"

Browse Popular Code Answers by Language