Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guzmanoj/baaac1796685814e08857c3e8c7c4f44 to your computer and use it in GitHub Desktop.
Save guzmanoj/baaac1796685814e08857c3e8c7c4f44 to your computer and use it in GitHub Desktop.
host roboto font and material icons locally in angular app
//// npm install --save roboto-fontface material-icons
//// put the below stuff into src/styles.scss
// for npm roboto-fontface package (to load local files)
$roboto-font-path: "~roboto-fontface/fonts" !default;
@import "~roboto-fontface/css/roboto/sass/roboto-fontface";
// for npm material-icons package (to load local files)
$material-icons-font-path: '~material-icons/iconfont/';
@import '~material-icons/iconfont/material-icons.scss';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment