15 lines
331 B
TypeScript
15 lines
331 B
TypeScript
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,
|
|
},
|
|
});
|