All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 24s
17 lines
468 B
TypeScript
17 lines
468 B
TypeScript
import { config } from '@keystatic/core'
|
|
|
|
import { TagsCollection } from './src/definitions/collections/system/tags.ts'
|
|
import { AuthorsCollection } from './src/definitions/collections/system/authors.ts'
|
|
import { MetaPostsCollection } from './src/definitions/collections/meta/posts.ts'
|
|
|
|
export default config({
|
|
storage: {
|
|
kind: 'local',
|
|
},
|
|
collections: {
|
|
tags: TagsCollection,
|
|
authors: AuthorsCollection,
|
|
meta_posts: MetaPostsCollection,
|
|
},
|
|
})
|