replaces the gitbook favicon with your own
npm install gitbook-plugin-custom-faviconPlugin deletes the gitbook favicon located at "_book/gitbook/images/favicon.ico" and replaces with your favicon.
There is probably a better way to do this, but this at least works for _most_ use cases. However, this is a hack :smiley:
* Add custom-favicon to your plugins array
* Add path to your favicon in favicon under pluginsConfig
#### book.json
``json`
{
"plugins" : ["custom-favicon"],
"pluginsConfig" : {
"favicon": "path/to/favicon.ico"
}
}
`bash`
gitbook install
bash
npm install gitbook-plugin-custom-favicon
``