update pagination

This commit is contained in:
2021-02-09 17:52:25 +02:00
parent 78a119826f
commit 2689db23b8
5 changed files with 142 additions and 116 deletions

View File

@@ -238,13 +238,19 @@ module.exports = {
tags: {
typeName: 'BlogTag',
create: true
},
category: {
typeName: 'BlogCategory',
create: true
}
}
}
},
{
use: '@gridsome/source-filesystem',
use: '@gridsome/source-filesystem',
options: {
typeName: 'News',
path: './content/news/**/*.md',
@@ -253,6 +259,11 @@ module.exports = {
tags: {
typeName: 'NewsTag',
create: true
},
category: {
typeName: 'NewsCategory',
create: true
}
}
}