Added taxonomy/tags + reader

This commit is contained in:
2025-11-11 13:32:41 +01:00
parent ae1cabeb97
commit abb694bf5b
3 changed files with 29 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import { config } from '@keystatic/core';
import AuthorsCollection from '@/keystatic/collections/taxonomy/authors';
import TagsCollection from '@/keystatic/collections/taxonomy/tags';
export default config({
storage: {
@@ -8,5 +9,6 @@ export default config({
},
collections: {
authors: AuthorsCollection,
tags: TagsCollection,
},
});