可能有一个属性可以设置搜索结果页面大小(看起来默认为10)。如何增加页面大小?
我在\ node_modules \撇号\ lib \ modules \撇号 - 搜索\模块中找到了这个:
perPage: 10
但是在我的lib \ modules \ _撇号-search \ index.js中更改此属性并不起作用:
module.exports = {
perPage: 500
}
答案 0 :(得分:1)
看起来结果是根据此更新调整的结果。要么是这个模块,要么将lib \ modules \ apostrophe-blog-pages \ index.js中的结果更改为:
module.exports = {
perPage: 25
}