29 lines
519 B
TypeScript
Executable File
29 lines
519 B
TypeScript
Executable File
import { defineContentConfig, defineCollection, z } from "@nuxt/content";
|
|
|
|
export default defineContentConfig({
|
|
collections: {
|
|
landing: defineCollection({
|
|
type: "page",
|
|
source: "index.md",
|
|
}),
|
|
docs: defineCollection({
|
|
type: "page",
|
|
source: {
|
|
include: "**",
|
|
},
|
|
schema: z.object({
|
|
links: z
|
|
.array(
|
|
z.object({
|
|
label: z.string(),
|
|
icon: z.string(),
|
|
to: z.string(),
|
|
target: z.string().optional(),
|
|
}),
|
|
)
|
|
.optional(),
|
|
}),
|
|
}),
|
|
},
|
|
});
|