Gitbook Plugin for custom-js-css
Usage
Add the plugin to yourbook.json
:{
"plugins": ["add-js-css"]
}
Options
put your js file and css file in the current book folder,for example in my book folder,themy.js
and my.css
in my
folder is my custom js and css.and below is the option:"pluginsConfig": {
"add-js-css": {
"js": [
"./my/my.js"
],
"css": [
"./my/my.css"
]
}
}