Hey Kapa is there anything wrong with this content.config file?
import { defineCollection, z } from 'astro:content';
import { glob, file } from 'astro/loaders';
const welcome = defineCollection({
loader: file("src/content/welcome/welcome.md"),
schema: z.object({
mainHeading: z.string(),
subHeading: z.string(),
}),
});
const about = defineCollection({
loader: file("src/content/about/about.md"),
schema: z.object({
title: z.string(),
}),
});
const tabBlock = defineCollection({
loader: glob({pattern: "**/*.md", base: "src/content/tabBlock"}),
schema: z.object({
tabLabel: z.string(),
tabHeading: z.string(),
}),
});
export const collections = {welcome, about, tabBlock};