refactor(projects): store images in content/, then copy them to public/ using custom nuxt module

This commit is contained in:
2025-11-23 17:51:16 +01:00
parent ba99b4912c
commit 210a71c17a
31 changed files with 178 additions and 51 deletions

View File

@@ -5,7 +5,7 @@ export default defineContentConfig({
collections: {
projects: defineCollection({
type: "page",
source: "projects/*.md",
source: "projects/**/index.md",
schema: z.object({
description: z.string(),
url: z.url().nullable(),