Improve bower main explanation

Geremia Taglialatela 2016-09-26 13:46:05 +02:00
parent 43a975d4c0
commit 49b9a040fc

@ -242,4 +242,17 @@ Ref: [Turn on and use the Blocking Untrusted Fonts feature](https://technet.micr
#### bower.json not including css file in main
Sorry, we are following [bower's specs](https://github.com/bower/spec/blob/master/json.md#main)
Ref: [#6227](https://github.com/FortAwesome/Font-Awesome/pull/6227), [twbs/bootstrap#16663](https://github.com/twbs/bootstrap/issues/16663)
Ref: [#6227](https://github.com/FortAwesome/Font-Awesome/pull/6227), [twbs/bootstrap#16663](https://github.com/twbs/bootstrap/issues/16663)
Please use overrides if you need `css` and `fonts` files:
```json
"overrides": {
"font-awesome": {
"main": [
"./css/font-awesome.css",
"./fonts/*"
]
}
}
```