Files
blog_astro/keystatic.config.ts
Dave 5dd3524aa3
All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 24s
last commit before switching to nextjs
2025-09-04 13:26:39 +02:00

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,
},
})