Closed espoelstra closed 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.
Added. Thanks.
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
The plugins snippet from my fixed but maybe overkill Gemfile
This allowed me to build and preview on Netlify.