How can I use bootstrap in custom Kibana plugin. I want to use popover to be displayed on clicking a link like bootstrap does.
You can require the CSS file in your plugin and Webpack will take care of it - or you can add the CSS you're wanting to be included in the configuration.
uIExports: {
styleSheetPaths: [
'/full/path/to/bootstrap.css'
]
}
Is there any sample app, that will help.
Not only css, i also need bootstrap js with that. so including only css wont do. Any sample app or ideas ?
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.