当前位置: 首页 > 工具软件 > jekyll-serve > 使用案例 >

Jekyll解决Deprecation:you haven't included the `jekyll-paginate` gem

端木野
2023-12-01

issue


问题

在运行 jekyll serve 的时候,出现该问题:

Deprecation: You appear to have pagination turned on, but you haven’t included the jekyll-paginate gem. Ensure you have gems: [jekyll-paginate] in your configuration file.


解决

因为我们的配置文件_config.yml使用了 paginate 配置项,所以需要添加一行:

gems: [jekyll-paginate]

参考

https://teamtreehouse.com/community/jekyllpaginate-gem

 类似资料: