I see the bundled generator in 6.3+ generates a React plugin whereas anything before that generates an Angular plugin. Can I just reuse the way the 6.3 generator uses:
app.config($locationProvider => {
$locationProvider.html5Mode({
enabled: false,
requireBase: false,
rewriteLinks: false,
});
});
app.config(stateManagementConfigProvider =>
stateManagementConfigProvider.disable()
);
And the RootController to make use of using a React App for plugins in prior versions too? It seems to work for 6.2 and wanted to know if I'll be able to do the same thing for versions 5. And can I just use the latest of EUI for Kibana versions 5 and restyle it to fit the theme or will that also cause problems? I'm assuming Kibana is just loading my plugin as an app so I should be able to utilize React 16.3+ in my app?