fix: updating dependencies
publish / Build-and-publish (push) Failing after 7m15s

This commit is contained in:
Unknown
2026-07-13 20:17:16 +01:00
parent 8b2603f804
commit efaa05549b
7 changed files with 24 additions and 188 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ exports.createPages = async ({ graphql, actions, reporter }) => {
`
{
allMarkdownRemark(
sort: { fields: [frontmatter___date], order: DESC }
sort: { frontmatter: { date: DESC } }
limit: 1000
filter: { fileAbsolutePath: { regex: "/content/blog/" } }
) {
@@ -35,7 +35,7 @@ exports.createPages = async ({ graphql, actions, reporter }) => {
}
}
tagsGroup: allMarkdownRemark(limit: 1000) {
group(field: frontmatter___tags) {
group(field: { frontmatter: { tags: SELECT } }) {
name: fieldValue
totalCount
}