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