Last active
May 18, 2017 12:39
-
-
Save ArneAnka/6db89ccd811f6f8c15546390016ae5ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Font awesome: | |
In App directory, run: | |
``` | |
npm install font-awesome | |
``` | |
In App/resources/assets/sass/app.scss add | |
``` | |
// Font awsome | |
$fa-font-path: "/assets/fonts"; | |
@import "node_modules/font-awesome/scss/font-awesome"; | |
``` | |
In webpack.mix.js add/append | |
``` | |
.copy('node_modules/font-awesome/fonts', 'public/assets/fonts'); | |
``` | |
Bulma: | |
In App directory run: | |
``` | |
npm install bulma | |
``` | |
In App/resources/assets/sass/app.scss add | |
``` | |
// Bulma | |
@import "node_modules/bulma/bulma"; | |
``` | |
Done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment