Added Sidenote Component
This commit is contained in:
@@ -1,11 +1,18 @@
|
||||
import { config } from '@keystatic/core';
|
||||
|
||||
import navigation from '@/keystatic/singletons/navigation';
|
||||
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',
|
||||
},
|
||||
collections: {},
|
||||
singletons: { navigation },
|
||||
singletons: { navigation: NavSingleton },
|
||||
collections: {
|
||||
authors: AuthorsCollection,
|
||||
tags: TagsCollection,
|
||||
meta_posts: MetaPostsCollection,
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user