Files
blog_legacy/keystatic.config.ts
Dave 0e70773aa0
Some checks failed
Build and Deploy Astro Site / deploy (push) Failing after 42s
Added PageHeader and first content
2025-09-11 23:22:55 +02:00

24 lines
737 B
TypeScript

import { config } from '@keystatic/core'
import { AWQPostsCollection } from '@/lib/keystatic/collections/awq/article'
import { AWQTalentsCollection } from '@/lib/keystatic/collections/awq/talents'
import { MetaPostsCollection } from '@/lib/keystatic/collections/meta/article'
import { AuthorsCollection } from '@/lib/keystatic/collections/taxonomy/authors'
import { TagsCollection } from '@/lib/keystatic/collections/taxonomy/tags'
export default config({
storage: {
kind: 'local',
},
ui: {
brand: { name: 'Dave | DMG' },
},
collections: {
tags: TagsCollection,
authors: AuthorsCollection,
meta_posts: MetaPostsCollection,
awq_posts: AWQPostsCollection,
awq_talents: AWQTalentsCollection,
},
})