diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-04-30 08:56:43 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-04-30 08:56:43 +0200 |
| commit | f51250941f4425ce4d63b90a266a29e8588a7d03 (patch) | |
| tree | a6343cc7796462471f48294050da26a99db1be20 /src/content.config.ts | |
| parent | 8fecbcbba2eef19f4adf3c95573f8330746335b7 (diff) | |
Add tagging to articles
Diffstat (limited to 'src/content.config.ts')
| -rw-r--r-- | src/content.config.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/content.config.ts b/src/content.config.ts index 3d69039..a0391a8 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -7,6 +7,7 @@ const blog = defineCollection({ title: z.string(), description: z.string(), publishedAt: z.coerce.date(), + tags: z.array(z.string()).default([]), }), }); |
