-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.config.ts
More file actions
41 lines (39 loc) · 1.38 KB
/
Copy pathcontent.config.ts
File metadata and controls
41 lines (39 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { defineCollection, defineContentConfig } from "@nuxt/content";
import { z } from "zod";
export default defineContentConfig({
collections: {
gallery: defineCollection({
type: "data",
source: "gallery/**.json",
schema: z.object({
fileId: z.string(),
name: z.string(),
image: z.string(),
description: z.string(),
date: z.string(),
tags: z.array(z.string()),
location: z.string(),
customLocation: z.string(),
published: z.boolean(),
weight: z.number(),
editedTime: z.string(),
DateTimeOriginal: z.string(),
DateTimeDigitized: z.string(),
ExposureTime: z.string(),
FNumber: z.string(),
ExposureMode: z.string(),
ExposureProgram: z.string(),
ISOSpeedRatings: z.string(),
Copyright: z.string(),
Artist: z.string(),
Make: z.string(),
LensSpecification: z.string(),
Model: z.string(),
Orientation: z.string(),
PixelXDimension: z.string(),
PixelYDimension: z.string(),
FocalLength: z.string(),
}),
}),
},
});