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