generated from yehezkielgunawan/next14-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-collections.ts
83 lines (79 loc) · 1.98 KB
/
content-collections.ts
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import { defineCollection, defineConfig } from "@content-collections/core";
import { compileMDX } from "@content-collections/mdx";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
import rehypeRaw from "rehype-raw";
import rehypeSlug from "rehype-slug";
import remarkGfm from "remark-gfm";
import remarkHtml from "remark-html";
const projects = defineCollection({
name: "projects",
directory: "content/projects",
include: "**/*.mdx",
schema: (z) => ({
name: z.string(),
description: z.string(),
url: z.string(),
projectIcon: z.string(),
projectHero: z.string(),
stacks: z.array(z.string()),
isFeatured: z.boolean(),
date: z.string(),
}),
});
const workExperiences = defineCollection({
name: "workExperiences",
directory: "content/work-experiences",
include: "**/*.mdx",
schema: (z) => ({
title: z.string(),
company: z.string(),
startDate: z.string(),
endDate: z.string().optional(),
}),
});
const blogs = defineCollection({
name: "blogs",
directory: "content/blogs",
include: "**/*.mdx",
schema: (z) => ({
title: z.string(),
summary: z.string(),
coverImg: z.string(),
date: z.string(),
category: z.string(),
}),
transform: async (document, context) => {
const mdx = await compileMDX(context, document, {
rehypePlugins: [rehypeAutolinkHeadings, rehypeSlug, rehypeRaw],
remarkPlugins: [remarkGfm, remarkHtml],
});
return {
...document,
mdx,
};
},
});
const quickNotes = defineCollection({
name: "quickNotes",
directory: "content/quick-notes",
include: "**/*.mdx",
schema: (z) => ({
title: z.string(),
subtitle: z.string(),
date: z.string(),
tags: z.array(z.string()),
}),
transform: async (document, context) => {
const mdx = await compileMDX(context, document, {
rehypePlugins: [rehypeAutolinkHeadings, rehypeSlug, rehypeRaw],
remarkPlugins: [remarkGfm, remarkHtml],
});
return {
...document,
mdx,
};
},
});
export default defineConfig({
collections: [projects, workExperiences, blogs, quickNotes],
});