【发布时间】:2020-03-18 05:02:43
【问题描述】:
我开始使用 Gatsby Minimal Starter Blog by LekoArts 和 Github repo。目前首页只能显示3个最新帖子。我能知道如何将它从 3 增加到 30。我没有看到任何设置。
【问题讨论】:
我开始使用 Gatsby Minimal Starter Blog by LekoArts 和 Github repo。目前首页只能显示3个最新帖子。我能知道如何将它从 3 增加到 30。我没有看到任何设置。
【问题讨论】:
在homepage-query.tsx的graphql查询中定义:
export const query = graphql`
query($formatString: String!) {
allPost(sort: { fields: date, order: DESC }, limit: 3) {
nodes {
slug
title
date(formatString: $formatString)
excerpt
timeToRead
description
tags {
name
slug
}
}
}
}
`
由gatsby-node.js 在gatsby-theme-minimal-blog-core 中使用(一个依赖项)。
const homepageTemplate = require.resolve(`./src/templates/homepage-query.tsx`)
【讨论】: