From 1569e6db6698e1d5c672484bc415f701c8a57bb8 Mon Sep 17 00:00:00 2001 From: Corbin Crutchley Date: Fri, 25 Oct 2019 11:21:05 -0700 Subject: [PATCH] Set value of page numbers back to 8 --- gatsby-node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatsby-node.js b/gatsby-node.js index 2630000b..23a4a8cb 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -135,7 +135,7 @@ exports.createPages = ({ graphql, actions }) => { }) }) - const postsPerPage = 3 + const postsPerPage = 8 const numberOfPages = Math.ceil(posts.length / postsPerPage) createPage({