You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now if you run jekyll serve. It takes 4 to 5 minutes before the site is served at localhost:4000, and it takes just as long for any changes to the MD files to be reflected on the site. I even tried the experimental incremental generation feature but it didn't help.
The bulk of the processing time comes from rendering _layouts/default.html , _includes/nav, and their dependencies, especially the files from jekyll-remote-theme plugin. We should into these components see if there's a way to optimize them.
The text was updated successfully, but these errors were encountered:
Right now if you run
jekyll serve
. It takes 4 to 5 minutes before the site is served atlocalhost:4000
, and it takes just as long for any changes to the MD files to be reflected on the site. I even tried the experimental incremental generation feature but it didn't help.When running
jekyll build --profile
you will get:The bulk of the processing time comes from
rendering _layouts/default.html
,_includes/nav
, and their dependencies, especially the files fromjekyll-remote-theme
plugin. We should into these components see if there's a way to optimize them.The text was updated successfully, but these errors were encountered: