glyphicons not showing with sass bootstrap integration

后端 未结 14 1685
滥情空心
滥情空心 2021-01-17 10:01

I used this tutorial to integrate bootstrap in my project:

https://laravel-news.com/2015/10/setup-bootstrap-sass-with-laravel-elixir/

This places an app.css

14条回答
  •  礼貌的吻别
    2021-01-17 10:39

    Updated answer, I have this implemented now in a much better way, similar to the top answer. In app.scss:

    /* BOOTSTRAP */
    @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
    
    /* FONT-AWESOME */
    $fa-font-path: "../../fonts";
    @import "node_modules/font-awesome/scss/font-awesome";
    

提交回复
热议问题