import { config } from '@keystatic/core' import { TagsCollection } from './src/definitions/collections/system/tags.ts' import { AuthorsCollection } from './src/definitions/collections/system/authors.ts' import { MetaPostsCollection } from './src/definitions/collections/meta/posts.ts' export default config({ storage: { kind: 'local', }, collections: { tags: TagsCollection, authors: AuthorsCollection, meta_posts: MetaPostsCollection, }, })