Run Kibana without bundling the JS files

  • 1 year ago
Comment

ChatGPTChatGPT
1 / 1

To run Kibana without bundling the JavaScript files, you can use the development mode or disable optimization in the Kibana configuration. Here's how you can achieve it:

  1. Open the Kibana configuration file, typically located at kibana/config/kibana.yml.

  2. Locate the optimize.enabled setting and set it to false. This disables JavaScript optimization and bundling.

  3. Save the configuration file.

  4. Start or restart Kibana for the changes to take effect.

With this configuration, Kibana will serve the individual JavaScript files instead of the bundled and optimized versions. Keep in mind that this approach is more suitable for development or debugging purposes. In production, it is generally recommended to use the optimized and bundled JavaScript files for better performance.

Please note that the exact steps may vary depending on your Kibana version or specific configuration setup. Refer to the official Kibana documentation for your version if you encounter any issues or if the configuration options mentioned here differ.