melangue / dactl

Modern, fast and configurable Jekyll theme with some tricks up it's sleeve.
http://melangue.github.io/dactl
221 stars 165 forks source link

Appears the Gemfile is missing some plugins defined in the _config.yml #15

Closed espoelstra closed 6 years ago

espoelstra commented 6 years ago

I was building my site on Netlify even though it will be deployed to GitHub pages and I ran into a lot of missing gems in the Gemfile.

config.yml

plugins:
  - jekyll-paginate
  - jekyll-sitemap
  - jekyll-github-metadata
  - jekyll-mentions
  - jekyll-redirect-from
  - jemoji

The plugins snippet from my fixed but maybe overkill Gemfile

group :jekyll_plugins do
  gem "jekyll-feed"
  gem "jekyll-paginate"
  gem "jekyll-sitemap"
  gem "jekyll-mentions"
  gem "jekyll-github-metadata"
  gem "jekyll-redirect-from"
  gem "jemoji"
end

This allowed me to build and preview on Netlify.

melangue commented 6 years ago

Added. Thanks.