更改撇号搜索结果页面大小

时间:2016-11-03 03:27:54

标签: apostrophe-cms

可能有一个属性可以设置搜索结果页面大小(看起来默认为10)。如何增加页面大小?

我在\ node_modules \撇号\ lib \ modules \撇号 - 搜索\模块中找到了这个:

perPage: 10

但是在我的lib \ modules \ _撇号-search \ index.js中更改此属性并不起作用:

module.exports = {  
   perPage: 500
}

1 个答案:

答案 0 :(得分:1)

看起来结果是根据此更新调整的结果。要么是这个模块,要么将lib \ modules \ apostrophe-blog-pages \ index.js中的结果更改为:

module.exports = {  
   perPage: 25
}