Glyphicons not working when using minified CSS

Try this:

  1. Copy the fonts from vendor/bootstrap to assets/

    cd roots;cp assets/vendor/bootstrap/fonts/* assets/fonts/

2.Change the assets/less/_variables.less from:

// Glyphicons path
// -------------------------

@icon-font-path:        "../vendor/bootstrap/fonts/";

To:

@icon-font-path:        "../fonts/";

3.Then build and deploy.

2 Likes