Strapi & Jekyll

Hi everyone! I’ve some questions about the integration about Strapi and Jekyll. Expecially my questions are about the plugin that run jekyll application and make all API’s calls.

When I run Jekyll application, initially I see that the plugin fetch the content inside each collections declared inside file _config.yml. So I see this in my terminal:

Jekyll Strapi: Fetching entries from xxx/articles?_locale=it&_limit=10000
Jekyll Strapi: Fetching entries from xxx/articles?_locale=en&_limit=10000
Jekyll Strapi: Fetching entries from xxx/business-areas?_locale=it&_limit=10000
Jekyll Strapi: Fetching entries from xxx/business-areas?_locale=en&_limit=10000
Jekyll Strapi: Fetching entries from xxx/categories?_locale=en&_limit=10000
Jekyll Strapi: Fetching entries from xxx/categories?_locale=en&_limit=10000

Where xxx is the name of my API endpoint. And so far everything is ok.
After that, I see a message like “Jekyll Feed: Generating feed for posts” and the terminal start with a numerous API’s calls, about 20/30 for each collections.

This process really slow down the run of the application. And now, every run take about 60-70 sec and it’s too slow if we compared it with a simple Jekyll project that take about 4-5 sec.

There’s a way to speed up the run of application or to fix this numerous API’s calls?