Hi All,
I am facing an issue setting up a Kibana development environment to customize the kibana-enhanced-table
plugin. I am running Kibana in a Docker container on my local machine and have followed the following steps:
- Cloned the Kibana GitHub repository and checked out the
tags/8.8
tag. - Cloned the
https://github.com/fbaligand/kibana-enhanced-table
repository into thekibana/plugins/enhancedTable
directory. - Installed nvm.
- Ran
nvm use
. - Ran
nvm install
. - Ran
yarn kbn bootstrap
. - Ran
cd plugins/enhancedTable/
. - Inside "plugins/enhancedTable" I ran
yarn install && yarn compile
. - Configured the kibana.dev.yml file
- Ran
yarn start --no-optimizer
(I added the--no-optimizer
flag because I was getting an error from chokidar).
After performing all of the above steps, I am successfully able to access the Kibana login screen in my browser. However, after entering the correct credentials, I receive the following error:
Can anyone please help me to identify the issue here?
Thank you in advance.