19 lines
546 B
TypeScript
19 lines
546 B
TypeScript
import { config } from '@keystatic/core';
|
|
|
|
import NavSingleton from '@/keystatic/singletons/navigation';
|
|
import AuthorsCollection from '@/keystatic/collections/taxonomy/authors';
|
|
import TagsCollection from '@/keystatic/collections/taxonomy/tags';
|
|
import MetaPostsCollection from '@/keystatic/collections/meta/article';
|
|
|
|
export default config({
|
|
storage: {
|
|
kind: 'local',
|
|
},
|
|
singletons: { navigation: NavSingleton },
|
|
collections: {
|
|
authors: AuthorsCollection,
|
|
tags: TagsCollection,
|
|
meta_posts: MetaPostsCollection,
|
|
},
|
|
});
|