-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontent-collections.ts
69 lines (66 loc) · 1.75 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
import { defineCollection, defineConfig } from "@content-collections/core";
import { compileMDX } from "@content-collections/mdx";
import rehypeSlug from "rehype-slug";
import remarkGfm from "remark-gfm";
const landing = defineCollection({
name: "landing",
directory: "content",
include: "**/*.mdx",
schema: (z) => ({
title: z.string(),
subtitle: z.string(),
summary: z.string(),
}),
transform: async (document, context) => {
const body = await compileMDX(context, document, {
rehypePlugins: [rehypeSlug],
remarkPlugins: [remarkGfm],
});
return {
...document,
image: `${process.env.NEXT_PUBLIC_APP_URL}/og?title=${encodeURI(
document.title
)}`,
slug: `/${document._meta.path}`,
slugAsParams: document._meta.path.split("/").slice(1).join("/"),
body: {
raw: document.content,
code: body,
},
};
},
});
const blog = defineCollection({
name: "blog",
directory: "content/blog",
include: "**/*.mdx",
schema: (z) => ({
title: z.string(),
subtitle: z.string(),
summary: z.string(),
publishedAt: z.string(),
author: z.string(),
tags: z.array(z.string()).optional(),
}),
transform: async (document, context) => {
const body = await compileMDX(context, document, {
rehypePlugins: [rehypeSlug],
remarkPlugins: [remarkGfm],
});
return {
...document,
image: `${process.env.NEXT_PUBLIC_APP_URL}/og?title=${encodeURI(
document.title
)}`,
slug: `/blog/${document._meta.path}`,
slugAsParams: document._meta.path.split("/").join("/"),
body: {
raw: document.content,
code: body,
},
};
},
});
export default defineConfig({
collections: [landing, blog],
});