import { config } from '@keystatic/core'; import AuthorsCollection from '@/keystatic/collections/taxonomy/authors'; import TagsCollection from '@/keystatic/collections/taxonomy/tags'; export default config({ storage: { kind: 'local', }, collections: { authors: AuthorsCollection, tags: TagsCollection, }, });