13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
import { config } from '@keystatic/core';
|
|
|
|
import AuthorsCollection from '@/keystatic/collections/taxonomy/authors';
|
|
|
|
export default config({
|
|
storage: {
|
|
kind: 'local',
|
|
},
|
|
collections: {
|
|
authors: AuthorsCollection,
|
|
},
|
|
});
|