mirror of
https://github.com/Kizuren/kizuren.dev.git
synced 2025-12-21 13:06:11 +01:00
17 lines
No EOL
411 B
TypeScript
17 lines
No EOL
411 B
TypeScript
import { defineCollection, defineContentConfig, z } from '@nuxt/content'
|
|
|
|
export default defineContentConfig({
|
|
collections: {
|
|
/**
|
|
* This is collection for content-wind theme
|
|
* Create `content.config.ts` in project root to overwrite this
|
|
*/
|
|
content: defineCollection({
|
|
type: 'page',
|
|
source: '**',
|
|
schema: z.object({
|
|
layout: z.string(),
|
|
}),
|
|
}),
|
|
},
|
|
}) |