refactor: moves content out to www root

This commit is contained in:
Lewis Wynne 2026-03-25 20:19:38 +00:00
parent 1e1c8f000a
commit 20e72afa44
3 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ import { z } from 'astro/zod';
import yaml from 'js-yaml';
const md = defineCollection({
loader: glob({ pattern: '**/*.md', base: './src/content/md' }),
loader: glob({ pattern: '**/*.md', base: './content' }),
schema: z.object({
title: z.string(),
date: z.coerce.date().optional(),
@ -15,7 +15,7 @@ const md = defineCollection({
});
const bookmarks = defineCollection({
loader: file('./src/content/bookmarks.yaml', {
loader: file('./content/bookmarks.yaml', {
parser: (text) => {
const data = yaml.load(text) as Array<Record<string, unknown>>;
return data.map((item, i) => ({ id: String(i), ...item }));